P粉6271364502023-09-06 17:29:18
您的語法為:
src: url('some_url'); src: url('other_url');
您只需在每一行中重新定義字體的 URL。所以瀏覽器只會使用最後一個,其他的都會被丟棄。正確的基本語法是:
@font-face { font-family: 'SomeFont'; src: local("SomeFont"), url('//host.tld/SomeFont.woff2') format('woff2'), url('//host.tld/SomeFont.woff') format('woff'), url('//host.tld/SomeFont.ttf') format('truetype'); }
如果您需要滿足舊瀏覽器的要求,您可以包含額外的字體格式。
注意:將錯誤的 format('ttf')
改為 format('truetype')
,感謝 @herrstrietzel