能够为 Firefox、Opera、Safari 专写一个 Hack 的情况非常之少,所以以下 Hack 方式在我看来特别新奇。So,做个记录,不做火星人=.=!
normal
.sampleCss{
height:10px;
}
1.Firefox 1-2
body:empty .sampleCss{
height:10px;
}
2.Firefox
@-moz-document url-prefix(){
.sampleCss{height:10px;}
}
3.Safari
@media screen and (-webkit-min-device-pixel-ratio:0){
.sampleCss{height:10px;}
}
4.Opera
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0){
head~body .sampleCss{ height:10px;}
}
来源:http://www.silentash.com/blog/2009/147.html
