GothamBold字体无法在Safari上呈现

时间:2019-02-01 14:33:53

标签: fonts safari

我在我的网站上使用GothamBook和GothamBold。只能在Safari上正确显示GothamBook,但不能正确显示GothamBold。

我不知道为什么不加粗...

@font-face {
    font-family: 'Gotham HTF';
    src: url("font/GothamHTF-Book.woff") format("woff");
    url("font/GothamBook.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham HTF';
    src: url("font/Gotham-Bold.woff") format("woff"),
    url("font/Gotham-Bold.woff2") format("woff2"),
    url("font/Gotham-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

工作:https://image.noelshack.com/fichiers/2019/05/5/1549031420-51034508-622499171534647-4506454994643320832-n.png

不起作用:https://image.noelshack.com/fichiers/2019/05/5/1549031420-51176106-755763351461937-4132132935346159616-n.png

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。 Safari的旧版本不支持这种声明。我需要使用其他名称声明字体:

@font-face {
 font-family: 'Gotham HTF';
 src: url("font/GothamHTF-Book.woff") format("woff");
 url("font/GothamBook.ttf") format("truetype");
}

@font-face {
 font-family: 'Gotham HTF Bold';
 src: url("font/Gotham-Bold.woff") format("woff"),
 url("font/Gotham-Bold.woff2") format("woff2"),
 url("font/Gotham-Bold.ttf") format("truetype");
}