兼容各大主流浏览器的常用CSS Hack汇总

来源:互联网 发布:顶点软件股票 编辑:程序博客网 时间:2024/05/23 23:22

.element{
color:#000;  //w3c标准
[;color:#f00;];   //Webkit(chrome和safari)
color:#666\9;   //E8
*color:#999;   //IE7
_color:#333;  //E6
}
:root .element{color:#0f0\9;}  //IE9
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (
-webkit-min-device-pixel-ratio:0) { .element{color:#336699;}}  //opera
@-moz-document url-prefix(){ .element{color:#f1f1f1;}}  //Firefox

调试工具:IETEST