有什么方法可以在我的网站中使用自定义字体文件吗?

发布于 2024-09-26 18:28:08 字数 68 浏览 2 评论 0原文

我可以使用@font-face,但它不适用于所有浏览器。

有什么方法可以在我的网站中使用自定义字体文件吗?

I can use @font-face but it does not work in all browsers.

Are there any way to use custom font file in my site ?

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

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

发布评论

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

评论(1

吲‖鸣 2024-10-03 18:28:08

@font-face 规则应该适用于所有现代浏览器 - 甚至 IE6+。

诀窍是确保您拥有每个浏览器都适合的正确语法和字体格式。例如:

@font-face {
    font-family: 'PT Sans';
    src: url('fonts/PT_Sans-webfont.eot');
    src: local('☺'), url('fonts/PT_Sans-webfont.woff') format('woff'), url('fonts/PT_Sans-webfont.ttf') format('truetype'), url('fonts/PT_Sans-webfont.svg#webfontTrsHPjCJ') format('svg');
    font-weight: normal;
    font-style: normal;
}

请注意,我们有 EOT、WOFF、TTF 和 SVG 作为衡量标准。 Chrome和Firefox可以使用WOFF和TTF,IE使用SVG和EOT。

还要确保每个字体文件的位置设置正确。

The @font-face rule should work in all modern browsers - even IE6+.

The trick is ensuring you have the right syntax and font formats that each browser caters to. For example:

@font-face {
    font-family: 'PT Sans';
    src: url('fonts/PT_Sans-webfont.eot');
    src: local('☺'), url('fonts/PT_Sans-webfont.woff') format('woff'), url('fonts/PT_Sans-webfont.ttf') format('truetype'), url('fonts/PT_Sans-webfont.svg#webfontTrsHPjCJ') format('svg');
    font-weight: normal;
    font-style: normal;
}

Notice we have EOT, WOFF, TTF and SVG for good measure. Chrome and Firefox can use WOFF and TTF, IE uses SVG and EOT.

Also ensure you have each font file's location set correctly.

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