怎么写针对IE9的CSS

(自己亲自试过有用)
针对IE9的CSS只需在相应CSS代码加入只有IE9识别的 9。具体代码如下:
.div{ background-color:#0f09;/* ie9 */ }
其他浏览器写法:
background-color:#f00;/*all*/ 
background-color:#0ff;/* ie 8/9 */ 
background-color:#0f09;/* ie9 */ 
*background-color:#00f;/*ie7*/ 
_background-color:#ff0;/*ie6*/ 
background-color//:#090;/*非IE*/ 
background-color:#9009;/*所有ie*/ 
原文地址:https://www.cnblogs.com/mmzuo-798/p/6207658.html