IE9的css hack使用示例
以前寫過《IE8的css hack》,ie9一出css hack也該更新,以前一直沒關注,今天在內部參考群mxclion分享了IE9的css hack,拿出來也分享一下:
復制代碼代碼如下:
select {
background-color:red; /* ie 8/9*/
background-color:blue9; /* ie 9*/
*background-color:#dddd00; /* ie 7*/
_background-color:#CDCDCD; /* ie 6*/
}
注意寫hack的順序,其中:
復制代碼代碼如下:
background-color:red;IE8和IE9都支持;
background-color:blue9; 僅IE9支持;
===============華麗的分割線===============
今天在看到另一種hack:
復制代碼代碼如下:
#element {
color:orange;
}
#element {
*color: white; /* IE6 7, doesn’t work in IE8/9 as IE7 */
}
#element {
_color: red; /* IE6 */
}
#element {
color: green/IE8 9; /* IE8 9 */
}
:root #element { color:pink /IE9; } /* IE9 */
