IE中CSS Hack写法

Hack 写法 兼容版本
* *color IE 6\7
+ +color IE 6\7
- -color IE 6
_ _color IE 6
# #color IE 6\7
\0 color:red\0 IE 8\9\10
\9 color:red\9 IE 6\7\8\9\10
\9\0 color:red\9\0 IE 9\10
!important !important;color:green; IE 7\8\9\10

说明:在标准模式中

  • ‘ - ’ 减号是IE6专有的hack
  • “ \9 ” IE6/IE7/IE8/IE9/IE10都生效
  • “ \0 ” IE8/IE9/IE10都生效,是IE8/9/10的hack
  • “ \9\0 “ 只对IE9/IE10生效,是IE9/10的hack

猜你喜欢

转载自blog.csdn.net/qq_28949081/article/details/78635716