IE浏览器下css hack

  1. \9    :所有IE浏览器都支持
  2. _和-  :仅IE6支持
  3. *     :IE6、IE7支持
  4. \0    :IE8、IE9支持
  5. \9\0  :IE8部分支持、IE9支持
  6. \0\9  :IE8、IE9支持

eg:

.color: {
color:#666\9; //IE8
* color:#999; //IE7
_color:#888; //IE6
}
:root .color{color:#666\9;}//IE9

 

posted @ 2016-12-26 10:48  wuln  阅读(144)  评论(0)    收藏  举报