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-width:0\0) {
   /* IE9 , IE10 ,IE11 style */
  .class {}
}

三、ie6-9

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-前缀

-ms- 是for ie.

-moz- 是for Firefox.

-webkit- 是for Safari和Chrome.

-o- 是for Opera

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

posted @ 2016-01-07 23:49  BuiltyMonkey  阅读(381)  评论(0编辑  收藏  举报