在Firefox中SourceSansPro-Bold字体更大胆

时间:2016-09-01 11:02:36

标签: css

在Firefox中:

display in firefox

.enum{
font-family: "SourceSansPro-Bold","Source Sans Pro";
font-weight: 700;
}

如果我正在做font-weight:400而不是很好

.enum{
font-family: "SourceSansPro-Bold","Source Sans Pro";
font-weight: 400;
}

但是,如果用户的谷歌字体CDN被阻止,那么它看起来不会变得粗体

Not bold

.enum{
font-family: "Source Sans Pro";
font-weight: 400;
}

2 个答案:

答案 0 :(得分:0)

您也应该下载粗体版本。

在html中使用此标记

Set

如果它被阻止,那么你无能为力

答案 1 :(得分:0)

我认为你可以像这样为firefox做这件事。它只会处理firefox浏览器。你可以只为firefox浏览器设置这个hack。

@-moz-document url-prefix() {
.enum{
      font-family: "Source Sans Pro";
      font-weight: 400;
 }
}