IE10 11的css hack

一、@media -ms-high-contrast

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
  /* ie10 11 style*/
  .class{}  
}

二、@media 0

@media screen and (min-0) {
   /* IE9 , IE10 ,IE11 style */
  .class {}
}

三、ie6-9

background-color:red;  /* ie 8/9*/

background-color:blue9;  /* ie 9*/

*background-color:green;  /* ie 7*/

_background-color:gray;  /* ie 6*/

四、-ms-前缀

-ms- 是for ie.

-moz- 是for Firefox.

-webkit- 是for Safari和Chrome.

-o- 是for Opera

注: 关于ie常用的hack大致就这些了, 以后遇到再逐一完善吧。

原文地址:https://www.cnblogs.com/MonkeyKingK/p/5111722.html