我在我的网站上使用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;
}
答案 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");
}