本文介绍了CONDITION CSS区分IE6到IE7的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想声明一个样式不同于ie6和ie7,
,但我的条件在css由IE7识别为IE6。我使用XP和explorer 7.
这是我使用的代码:
i want to declare a style different to ie6 and ie7 ,but my condition in css recognized by IE7 as IE6. I use XP and explorer 7.This the code i use :
<!--[if !IE]>
#mainDiv{text-align:-moz-center;}
#skyBanner {top:0px;left:0px; position:fixed;visibility:hidden;}
<![endif]-->
<!--[if lt IE 7]>
body > #skyBanner { position: fixed;}
#skyBanner {position:absolute;visibility:hidden;
left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}
<![endif]-->
<!--[if IE 7]>
#skyBanner {position:fixed;visibility:hidden;
}
<![endif]-->
我的错误是什么?
推荐答案
不能在CSS中使用条件注释。仅在HTML中。所以你必须把不同浏览器的声明放到不同的文件中,并且条件性地向它们注释几个< link>
。
You can't use conditional comments in CSS. Only in HTML. So you'd have to put the declarations for the different browsers into different files and conditional-comment several <link>
s to them.
更多的东西沿着
<html>
<head>
<!--[if !IE]>
<link rel="stylesheet" type="text/css" href="style_non_ie.css">
<![endif]-->
...
</head>
</html>
这篇关于CONDITION CSS区分IE6到IE7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!