仅ie样式表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了仅ie样式表相关的知识,希望对你有一定的参考价值。

how to link ie only stylesheets and stylesheets by generation of ie
  1. Here is the basic technique for an IE-Only stylesheet:
  2.  
  3. <!--[if IE]>
  4. <link rel="stylesheet" type="text/css" href="ie-only.css" />
  5. <![endif]-->
  6.  
  7. The opposite technique, targeting only NON-IE browsers:
  8.  
  9. <!--[if !IE]>
  10. <link rel="stylesheet" type="text/css" href="not-ie.css" />
  11. <![endif]-->
  12.  
  13. If you need to get down and dirty with specific versions of IE, here are a few examples.
  14.  
  15. IE 7 ONLY:
  16.  
  17. <!--[if IE 7]>
  18. <link href="IE-7-SPECIFIC.css" rel="stylesheet" type="text/css">
  19. <![endif]-->
  20.  
  21. IE 6 ONLY:
  22.  
  23. <!--[if IE 6]>
  24. <link rel="stylesheet" type="text/css" href="IE-6-SPECIFIC.css" />
  25. <![endif]-->
  26.  
  27. IE 5 ONLY:
  28.  
  29. <!--[if IE 5]>
  30. <link rel="stylesheet" type="text/css" href="IE-5-SPECIFIC.css" />
  31. <![endif]-->
  32.  
  33. IE 5.5 ONLY:
  34.  
  35. <!--[if IE 5.5000]>
  36. <link rel="stylesheet" type="text/css" href="IE-55-SPECIFIC.css" />
  37. <![endif]-->
  38.  
  39. VERSION OF IE VERSION 6 OR LOWER: (I find this one pretty handy)
  40.  
  41. <!--[if lt IE 7]>
  42. <link rel="stylesheet" type="text/css" href="IE-6-OR-LOWER-SPECIFIC.css" />
  43. <![endif]-->

以上是关于仅ie样式表的主要内容,如果未能解决你的问题,请参考以下文章

条件样式表。我需要根据 IE 版本设置样式并拥有

IE 不应用样式

样式表未在ie11或firefox上加载

兼容模式下ie9和ie10显示样式在不兼容模式下为啥不加载css样式?

修复iE背景透明度:iE_样式表

外部样式表不会覆盖引导程序