针对特定浏览器起作用的CSS: IE Chrome Firefox CSS Hack

Firefox

@-moz-document url-prefix() { 
  .cssSelector {
     font-size: 14px;
  }
}


Chrome

@media screen and (-webkit-min-device-pixel-ratio:0) {
    #test1{color:red;}
}


IE6/7/8/9+

<!--[if lt IE 7 ]><body class="ie ie6"><![endif]-->
<!--[if IE 7]><body class="ie"><![endif]-->
<!--[if IE 8]><body class="ie"><![endif]-->
为IE附加新的CSS文件
IE7/8多加一个,IE6多加两个,不要污染别的CSS文件

<!--[if lt IE 9]>
<link type="text/css" rel="stylesheet" href="css/show_ie.css">
<![endif]-->
<!--[if lt IE 7]>
<link type="text/css" rel="stylesheet" href="css/show_ie6.css">
<![endif]-->


猜你喜欢

转载自blog.csdn.net/aerbaba/article/details/78754001