如何在字体加载之前更改默认字体?

发布于 2024-10-19 18:20:00 字数 129 浏览 3 评论 0原文

在 Firefox 中,当页面加载时,它会先显示默认字体(例如 Times New Roman)一段时间(取决于连接速度),然后再使用指定的字体进行渲染。我知道这不能更快,但是我怎样才能将 Arial 设置为默认字体,然后在字体加载时更改它呢?

In Firefox when a page loads it shows a default font (such as Times New Roman) for a moment (depending on connection speed) before it renders using the specified font-face. I understand this cannot be faster but how can I set, for example, Arial as the default font before it changes when the font-face loads?

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

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

发布评论

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

评论(1

金橙橙 2024-10-26 18:20:00

在 font-family 属性中指定额外的字体将解决您的问题。

font-family: "YourFontFaceFont", arial;

这将导致使用 arial 直到“YourFontFaceFont”可用。

Specifying an extra font in your font-family property will solve your problem.

font-family: "YourFontFaceFont", arial;

This will cause arial to be used until "YourFontFaceFont" is available.

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