标签:
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){ /* ie10 11 style*/ .class{} }
@media screen and (min-width:0\0) { /* IE9 , IE10 ,IE11 style */ .class {} }
background-color:red\0; /* ie 8/9*/ background-color:blue\9\0; /* ie 9*/ *background-color:green; /* ie 7*/ _background-color:gray; /* ie 6*/
-ms- 是for ie.
-moz- 是for Firefox.
-webkit- 是for Safari和Chrome.
-o- 是for Opera
注: 关于ie常用的hack大致就这些了, 以后遇到再逐一完善吧。
标签:
原文地址:http://www.cnblogs.com/MonkeyKingK/p/5111722.html