hack 兼容各瀏覽器寫法

#menu{display: none\9;}  (ie9以上瀏覽器,包含ie9)
/* IE9+ */ (ie9以上瀏覽器,包含ie9)
@media all and (min-width:0) {
    .class{
        color:red;
    }
}
/* IE10+ */(ie10以上瀏覽器,包含ie10)
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)  {
    .class{
        color:red;
    }
}
/* Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .class{
       color:red;
    }
}
/* Firefox */
@-moz-document url-prefix() {
    .class{
        color:red;
    }
}
相關文章
相關標籤/搜索