IE9的css hack – WEB前端開發 Web前端開發 ? 11年前 掃碼分享 我是創始人李巖:很抱歉!給自己產品做個廣告,點擊進來看看。 哎呀~ \ 0 被過濾掉了,重新發下,注意實際使用時,中間沒空格 /* Chrome, Safari, Firefox */ @media all and (min-width:0) { } ———————————————————————————- /* Chrome, Safari */ @media screen and (-webkit-min-device-pixel-ratio:0) { } ———————————————————————————- /* IE6+ */ .class { color: red\9; } ———————————————————————————- /* IE8+ */ .class { color: red\ 0; } ———————————————————————————- /* IE8 only */ @media \ 0screen { } ———————————————————————————- /* IE9 only */ :root .class { } ———————————————————————————- /* 目前只發現 color、background-color 可以這樣區分IE8和IE9 */ .class { color: red\ 0; /* IE8+ */ color: blue\9\ 0; /* IE9 only */ } [回復] 本文被轉載1次 首發媒體 | 轉發媒體 隨意打賞
哎呀~ \ 0 被過濾掉了,重新發下,注意實際使用時,中間沒空格
/* Chrome, Safari, Firefox */
@media all and (min-width:0) { }
———————————————————————————-
/* Chrome, Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) { }
———————————————————————————-
/* IE6+ */
.class {
color: red\9;
}
———————————————————————————-
/* IE8+ */
.class {
color: red\ 0;
}
———————————————————————————-
/* IE8 only */
@media \ 0screen { }
———————————————————————————-
/* IE9 only */
:root .class { }
———————————————————————————-
/* 目前只發現 color、background-color 可以這樣區分IE8和IE9 */
.class {
color: red\ 0; /* IE8+ */
color: blue\9\ 0; /* IE9 only */
}
[回復]