以前写过《IE8的css hack》,ie9一出css hack也该更新,以前一直没关注,今天在内部参考群mxclion分享了IE9的css hack,拿出来也分享一下:
复制代码代码如下:
select {
background-color:red ;
background-color:blue9 ;
*background-color:#dddd00;
_background-color:#CDCDCD;
}
注意写hack的顺序,其中:
复制代码代码如下:
background-color:red ;IE8和IE9都支持;
background-color:blue9 ; 仅IE9支持;
===============华丽的分割线===============
今天在看到另一种hack:
复制代码代码如下:
#element {
color:orange;
}
#element {
*color: white;
}
#element {
_color: red;
}
#element {
color: green /IE8+9;
}
:root #element { color:pink /IE9; }



