字体在不同浏览器中看起来不同

时间:2016-10-07 11:06:28

标签: html css cross-browser

我用过#34; Raleway"我的网页中的字体。但在不同的浏览器中看起来不同有什么方法可以解决这个问题吗?

以下是我使用的链接。

<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Raleway" />

下面是crome和firefox视图中的图像:

Click here to check Crome & firefox view image

在firefox字体中看起来有点大胆和阴影。

2 个答案:

答案 0 :(得分:4)

使用此。

body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased
}

如果不能正常工作

body {
    -webkit-font-smoothing: antialiased!important;
    -moz-font-smoothing: antialiased!important;
    -o-font-smoothing: antialiased!important;
    font-smoothing: antialiased!important;
}

答案 1 :(得分:0)

body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}