字体粗体粗体不适用于@ font-face,chrome 72

时间:2019-03-15 13:57:58

标签: css google-chrome font-face

在chrome 72(mac)中,字体粗细不起作用,在Safari和FF中,粗体按预期显示。

/* latin */
@font-face {
  font-family: 'Questrial';
  font-style: normal;
  font-weight: 400;
  src: local('Questrial'), local('Questrial-Regular'), url(https://fonts.gstatic.com/s/questrial/v8/QdVUSTchPBm7nuUeVf70viFluW44JQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

p ,strong {
font-family:'Questrial';
}
<p>normal text</p>
<strong>bold text</strong>

enter image description here

解决此问题的一种方法是下载一个粗体字体文件并使用@ font-face进行设置,不幸的是,在我的情况下Questrial-Bold不存在,还有另一种解决方法吗?

1 个答案:

答案 0 :(得分:0)

如果转到https://fonts.google.com/specimen/Questrial?sidebar.open=true&selection.family=Questrial,您会看到您的字体没有粗体选项。但是,为什么Firefox显示粗体?好问题,也许是因为它是更好的浏览器?

因此,请选择其他字体系列,并确保使用<link href="https://fonts.googleapis.com/css2?family=Questrial&display=swap" rel="stylesheet">@font-face { font-family: '...'; font-weight: 700; ... }确实包括粗体选项。 P.s. 700 =粗体。