码迷,mamicode.com
首页 > Web开发 > 详细

IE10 11的css hack

时间:2016-01-08 00:19:43      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

一、@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大致就这些了, 以后遇到再逐一完善吧。

IE10 11的css hack

标签:

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!