@font-face 文件无法离线加载

发布于 2024-11-19 04:46:13 字数 271 浏览 2 评论 0原文

我在使用 @font-face 和我机器上的字体时遇到问题。我的文件还没有在服务器上。我正在尝试离线预览它们,但它们未加载。

这是 css 文件中的代码:

@font-face{
   font-family:"chunk";
   src: url('file:///C:/...Fonts/Chunkfive.otf');
}
div{
   font-family:"chunk";
}

有人遇到过类似的问题吗?

I'm having trouble using @font-face with fonts located on my machine. My files aren't on a server yet. I'm trying to preview them offline, but they aren't loading.

Here is the code from the css file:

@font-face{
   font-family:"chunk";
   src: url('file:///C:/...Fonts/Chunkfive.otf');
}
div{
   font-family:"chunk";
}

Has anyone had similar problems?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

别挽留 2024-11-26 04:46:13

将它们包含在您的站点文件夹中,并像处理图像一样引用它们。

Include them in your site folder, and reference them as you do with images.

葵雨 2024-11-26 04:46:13

@pvenkat;如果您的字体文件夹& css 在同一文件夹中,然后只需在您的 url 路径中写入此 Fonts/Chunk Five.otf 即可如果您的 css 文件夹是 stylesheet 文件夹 中的其他文件夹,则在您的路径中写入 ../Fonts/Chunk Five.otf 可能适合您。

@pvenkat; if your font folder & css in same folder then just write this Fonts/Chunkfive.otf in your url path & if your css folder some other folder like in stylesheet folder then write ../Fonts/Chunkfive.otf in your path may be that's work for you.

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