标签:color 使用 on c size r as 不同的 class
/*所有浏览器*/
.test{font-size:60px}
/*only ie9,ie9 支持 :root 选择器,:root .class{ background-color:orange; }这样FF,opera等也认识;所以要写成:root .class{ background-color:orange\9; } */
:root .test{font-size:50px\9}
:root .test{font-size:50px\0}
:root .test{font-size:50px\0\9}
:root .test{font-size:50px\9\0}
:root .test{font-size:50px\0/}
/*ie8和ie9*/
.test{font-size:40px\9}
.test{font-size:40px\0}
.test{font-size:40px\9\0}
.test{font-size:40px\0\9}
.test{font-size:40px\0/}
/*ie6和ie7*/
.test{*font-size:60px}
.test{+font-size:60px}
/*only ie6*/
.test{_font-size:60px}
.test{-font-size:60px}
页面要尽量少使用hack
css hack:就是针对不同的浏览器写不同的css code 的过程
ie6 识别_ *
ie7识别*
ie8:\0
ie9:\9\0
标签:color 使用 on c size r as 不同的 class
原文地址:http://www.cnblogs.com/fangdx/p/3972913.html