码迷,mamicode.com
首页 > Web开发 > 详细

css hack ie

时间:2016-08-10 00:38:29      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

有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. <!--[if !IE]><!--><script>
  2. if (/*@cc_on!@*/false) {
  3. document.documentElement.className+=‘ ie10‘;
  4. }
  5. </script><!--<![endif]-->

请注意/*@cc_on ! @*/中间的这个感叹号。

这样就可以在ie10中给html元素添加一个class=”ie10″,然后针对ie10的样式可以卸载这个这个选择器下:

  1. .ie10 .example {
  2. /* IE10-only styles go here */
  3. }

这是ie10标准模式下的截图:

技术分享  

这是ie10,IE8模式下的截图:

技术分享

考录到兼容以后的IE版本,比如IE11,js代码可以改一下:

  1. if (/*@cc_on!@*/false) {
  2. document.documentElement.className+=‘ ie‘ + document.documentMode;
  3. }

关于document.documentMode可以查看IE的documentMode属性(IE8+新增)。

可能是想多了,实事上经测试预览版的IE11已经不支持@ cc_on语句,不知道正式版会不会支持。不过这样区分IE11倒是一件好事。这样修改代码:

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>无标题文档</title>
  6. <!--[if !IE]><!-->
  7. <script>
  8. // 针对IE10
  9. if (/*@cc_on!@*/false) {
  10. document.documentElement.className += ‘ ie‘ + document.documentMode;
  11. }
  12. // 针对IE11及非IE浏览器,
  13. // 因为IE11下document.documentMode为11,所以html标签上会加ie11样式类;
  14. // 而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。
  15. if (/*@cc_on!@*/true) {
  16. document.documentElement.className += ‘ ie‘ + document.documentMode;
  17. }
  18. </script>
  19. <!--<![endif]-->
  20. <style type="text/css">
  21. .ie10 .testclass {
  22. color: red
  23. }
  24. .ie11 .testclass {
  25. color: blue
  26. }
  27. .ieundefined .testclass {
  28. color: green
  29. }
  30. </style>
  31. </head>
  32.  
  33. <body>
  34. <div>
  35. test text!
  36. </div>
  37. </body>
  38. </html>

其中:

  1. if (/*@cc_on!@*/true) {
  2. document.documentElement.className += ‘ ie‘ + document.documentMode;
  3. }

以上代码是针对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. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  2. /* IE10-specific styles go here */
  3. }

这种写法可以适配到高对比度和默认模式。所以可以覆盖到所有ie10的模式了。这种方式在预览版的IE11中也生效。

当然,方法二也可以和方法一一起用:

  1. if (window.matchMedia("screen and (-ms-high-contrast: active), (-ms-high-contrast: none)").matches) {
  2. document.documentElement.className += "ie10";
  3. }

三、@media 0 方法

这个方法不是太完美,因为IE9和预览版的IE11也支持media和\0的hack。

  1. @media screen and (min-width:0\0) {
  2. /* IE9 , IE10 ,IE11 rule sets go here */
  3. }

总之,随着IE的逐渐标准化,IE11和IE10可能很少用不到css hack,不看也罢,呵呵

css hack ie

标签:

原文地址:http://www.cnblogs.com/fengweb/p/5755042.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!