@font-face 在 Firefox 中不起作用,但在 chrome 中正常
有什么想法吗?这是我正在使用的:
@font-face {
font-family: 'Jott';
src: url(http://stuff.saikonet.org/fonts/jott/JottFLF-Bold.ttf) format('truetype');
}
any ideas? here's what I'm using:
@font-face {
font-family: 'Jott';
src: url(http://stuff.saikonet.org/fonts/jott/JottFLF-Bold.ttf) format('truetype');
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
同源规则:默认情况下,Firefox 只接受相对链接。如果您想使用绝对链接或包含来自不同域的字体,则需要使用访问控制标头发送这些字体。请参阅:http://webfonts.info/wiki/index.php?title= %40font-face_support_in_Firefox
Same-origin rule: By default, Firefox will only accept relative links. If you want to use absolute links or include fonts from different domains, you need to send these fonts with Access Control Headers. See: http://webfonts.info/wiki/index.php?title=%40font-face_support_in_Firefox
这可能是你的问题吗:
当我下载 TTF 时,它也可以在 Firefox 中运行。
Can that be your problem:
When I downloaded the TTF it was working in Firefox as well.