@font-face 在 Firefox 中不起作用,但在 chrome 中正常

发布于 2024-11-17 03:09:09 字数 175 浏览 1 评论 0原文

有什么想法吗?这是我正在使用的:

@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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

断舍离 2024-11-24 03:09:09

同源规则:默认情况下,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

我的痛♀有谁懂 2024-11-24 03:09:09

这可能是你的问题吗:

在 Gecko 中,Web 字体受到相同的域限制(字体文件必须与使用它们的页面位于同一域中),除非使用 HTTP 访问控制来放宽此限制。
https://developer.mozilla.org/en/css/@font-face


当我下载 TTF 时,它也可以在 Firefox 中运行。

Can that be your problem:

In Gecko, web fonts are subject to the same domain restriction (font files must be on the same domain as the page using them), unless HTTP access controls are used to relax this restriction.
https://developer.mozilla.org/en/css/@font-face

When I downloaded the TTF it was working in Firefox as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文