IE10 CSS Hack(顺便聊聊IE11的CSS Hack)
有IE就有hack,看看IE9的css hack,IE8的css hack;上次同事说一个页面IE10下有问题,IE9下测试了一下,也有同样的问题。悲剧了赶紧找IE10的hack。
google上翻到的IE10 CSS Hacks 还算比较实用的。记录一下以备后用。
一、特性检测:@cc_on
我们可以用IE私有的条件编译(conditional compilation)结合条件注释来提供针对ie10的Hack:该脚本里面的IE排除条件注释,以确保IE6-9不承认它,然后它功能检测到了名为@ cc_on。
1 html 代码: 2 <!--[if !IE]><!--><script> 3 if (/*@cc_on!@*/false) { 4 document.documentElement.className+=' ie10'; 5 } 6 </script><!--<![endif]-->
请注意/*@cc_on ! @*/中间的这个感叹号。
这样就可以在ie10中给html元素添加一个class=”ie10″,然后针对ie10的样式可以卸载这个这个选择器下:
1 css 代码: 2 .ie10 .example { 3 /* IE10-only styles go here */ 4 }
这是ie10标准模式下的截图:
这是ie10,IE8模式下的截图:
考录到兼容以后的IE版本,比如IE11,js代码可以改一下:
1 javascript 代码: 2 if (/*@cc_on!@*/false) { 3 document.documentElement.className+=' ie' + document.documentMode; 4 }
关于document.documentMode可以查看IE的documentMode属性(IE8+新增)。
可能是想多了,实事上经测试预览版的IE11已经不支持@ cc_on语句,不知道正式版会不会支持。不过这样区分IE11倒是一件好事。这样修改代码:
html 代码: <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>无标题文档</title> <!--[if !IE]><!--> <script> // 针对IE10 if (/*@cc_on!@*/false) { document.documentElement.className += ' ie' + document.documentMode; } // 针对IE11及非IE浏览器, // 因为IE11下document.documentMode为11,所以html标签上会加ie11样式类; // 而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。 if (/*@cc_on!@*/true) { document.documentElement.className += ' ie' + document.documentMode; } </script> <!--<![endif]--> <style type="text/css"> .ie10 .testclass { color: red } .ie11 .testclass { color: blue } .ieundefined .testclass { color: green } </style> </head> <body> <div> test text! </div> </body> </html>
其中:
1 javascript 代码: 2 if (/*@cc_on!@*/true) { 3 document.documentElement.className += ' ie' + document.documentMode; 4 }
以上代码是针对IE11及非IE浏览器,因为:
- IE11下document.documentMode为11,所以html标签上会加ie11样式类;
- 而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。
这样把IE11也区分出来了,IE11预览版下的截图:
。
呵呵,纯属YY,IE11正式版还不知道什么样子,而且在实际的项目中随着IE的逐渐标准化,IE11和IE10可能很少用不到css hack。
二、@media -ms-high-contrast 方法
IE10支持媒体查询,然后也支持-ms-high-contrast这个属性,所以,我们可以用它来Hack IE10:
1 css 代码: 2 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 3 /* IE10-specific styles go here */ 4 }
这种写法可以适配到高对比度和默认模式。所以可以覆盖到所有ie10的模式了。这种方式在预览版的IE11中也生效。
当然,方法二也可以和方法一一起用:
1 javascript 代码: 2 if (window.matchMedia("screen and (-ms-high-contrast: active), (-ms-high-contrast: none)").matches) { 3 document.documentElement.className += "ie10"; 4 }
三、@media 0 方法
这个方法不是太完美,因为IE9和预览版的IE11也支持media和\0的hack。
css 代码: @media screen and (min-width:0\0) { /* IE9 , IE10 ,IE11 rule sets go here */ }
总之,随着IE的逐渐标准化,IE11和IE10可能很少用不到css hack,不看也罢,呵呵。
转载自: