如何在CSS文件中更改safari和opera的字体大小而不是chrome。

时间:2016-08-04 03:02:25

标签: html css google-chrome firefox

如何为一个浏览器更改此设置,同时为另一个浏览器更改?

h2 {
    font-size: 150%;
    color: red;
}  

感谢。比如让它成为蓝色或175% 以下是dude解决方案的部分内容。

1 个答案:

答案 0 :(得分:3)

@-moz-document url-prefix() {
    h2 {
        font-size: 150%;
        color: red;
    } 
}

here

请参阅其他Firefox特定的css扩展here

“诀窍”here

上的简单写作

修改

关于其他浏览器:您可以在browserhacks.com上找到一些有用的特定于浏览器的CSS'黑客'