对于前端工作者,最痛苦的事莫过于浏览器兼容性的调试,而这最痛苦的事中,最变态的莫过于微软的三个版本IE6.0/IE7.0/IE8.0. 为了让所写代码在各主流浏览器中正常运行,我们不得不为各种浏览器写对应的样式。本文,青鸟将为你总结CSS针对各浏览器的兼容HACK(以IE6/IE7/IE8 /FF为主),以及IE特有的条件注释使用方法.
width:100px; /* FireFox及其他浏览器 */ width:200px\0; /* IE8能识别\0*/ *width:300px!important; /* ,IE7 既能能识别*号,也能识别important */ *width:400px; /* IE6也能识别*号 */ /*Mr.Think提示:请注意书写顺序@MrThink.net*/
第二种
width:100px; /* FireFox及其他浏览器 */ width:200px\0; /* IE8能识别\0*/ *width:300px; /* IE7也能识别*号 */ _width:400px; /* IE6能识别下划线*/ /*Mr.Think提示:请注意书写顺序@MrThink.net*/
第三种 width:100px; /* FireFox及其他浏览器 */ width:200px\0; /* IE8能识别\0*/ +width:300px; /* +只识别IE7 */ _width:400px; /* IE6能识别下划线*/ /*Mr.Think提示:请注意书写顺序@MrThink.net*/
二、不常见的HACK(OP表示Opera,SA表示Safari),其中第3条比较实用 1..color1{ color:#F00; color/*\**/:#00F /*\**/}/*IE6,IE7,IE8,FF,OP,SA识别*/
width:100px\0;/* 支持IE8 */ _width:100px; /* 支持IE6 */ [width:100px; /* 支持IE6,7 */ +width:100px; /* 支持IE6,7 */ *width:100px; /* 支持IE6,7 */ *width:100px!important; /* 支持IE6,7, */ *+width:100px; /* 支持IE6,7, */ *+width:100px!important;/* 支持IE6,7, */ width:100px\9; /* 支持IE6,7,8 */ width:100px!important; /* 支持IE6,7,8,FF */ w\idth:100px; /*IE5.x不支持 IE6、IE7、IE8、FF支持 */
四、IE特有的html条件注释使用规则 <!--[if IE]>此处内容只有IE可见<![endif]–>
2.仅IE6可见的写法 <!-–[if IE 6]>此处内容只有IE6.0可见<![endif]–->
3.仅IE7可见的写法 <!–-[if IE 7]>此处内容只有IE7.0可见<![endif]–->
4.版本区间可显示写法 <!--[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]-->
<!--[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]-->
<!--[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]-->
<!--[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]-->
5.非IE可见的写法(注意:此条不符合WEB标准,但的确实用) <!--[if !IE]>此处内容只非IE可见<![endif]-->
|