浏览器兼容大全
<style type="text/css">
/*所有浏览器*/
.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}
</style>