[转]Firefox\Opera\Safari CSS Hack

能够为 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

This entry was posted in HTML & CSS and tagged . Bookmark the permalink.

发表评论

您的电子邮箱不会被公开。 标记为 * 的区域必须填写

*

*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>