0

我有这个带有自定义字体的网站,我使用@font_face 代码

@font-face {
    font-family: 'webfontregular';
    src: url('fonts/cracked-webfont.eot');
    src: url('fonts/cracked-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/cracked-webfont.woff') format('woff'),
         url('fonts/cracked-webfont.ttf') format('truetype'),
         url('fonts/cracked-webfont.svg#webfontregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

当网站在线时字体在 Firefox 上不起作用

到目前为止我所尝试的:

1-我尝试对字体使用相对和绝对 URL,url('../../../fonts/cracked-webfont.eot');url('http://example.comfonts/cracked-webfont.eot');

2-尝试将仅包含字体代码的CSS文件放在根目录中并且它有效

为什么字体代码仅在 CSS 放置在根目录时有效,即使我使用相对 URL,因为 Firefox 不支持跨域字体 Web 引用

4

1 回答 1

0

在萤火虫中检查所有资源是否已在“网络”选项卡下加载,如果有,则该字体可能存在问题。

于 2013-02-18T21:42:33.350 回答