我添加了一个名为Gotham的字体(通过@ font-face),它在PC(所有浏览器)和Mac(所有浏览器)上工作,除了Mac上的Chrome。
我有以下字体文件:
Gotham-Regular.eot
Gotham-Regular.woff
Gotham-Regular.otf
Gotham-Regular.svg
Gotham-Regular.ttf
在css上,这个宣言:
@font-face {
font-family: "Gotham";
src: url('fonts/Gotham-Regular.eot');
src: url('fonts/Gotham-Regular.eot?#iefix') format('embedded-opentype'),
url('fonts/Gotham-Regular.svg#Gotham') format('svg'),
url('fonts/Gotham-Regular.woff') format('woff'),
url('fonts/Gotham-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
问题是,我有另一种字体以这种方式安装并且它出现了(Antonio)。只有这个Gotham字体不会。
不确定问题是什么。