”工欲善其事,必先利其器。“—孔子《论语.录灵公》
首页 > 编程 > 如何使用 .ttf 包含自定义字体并确保跨浏览器兼容性?

如何使用 .ttf 包含自定义字体并确保跨浏览器兼容性?

发布于2024-11-11
浏览:923

How to Include Custom Fonts Using .ttf and Ensure Cross-Browser Compatibility?

包括使用 .ttf 和 CSS 的自定义字体

您想要将 .ttf 字体合并到您的网页中,但遇到困难。让我们检查一下您的代码:

@font-face {
    font-family: 'oswald';
    src: url('/font/oswald.regular.ttf');
}

问题出在哪里?

仅包含 .ttf 文件不足以实现跨浏览器兼容性。要覆盖多种浏览器,需要多种字体格式。

综合解决方案:

@font-face {
    font-family: 'MyWebFont';
    src: url('webfont.eot'); /* IE9 Compat Modes */
    src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('webfont.woff') format('woff'), /* Modern Browsers */
         url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

此代码假定您的网络字体具有 .eot、.woff、.ttf 和 SVG 格式。像 Font Squirrel 或 Transfonter 这样的 Web 字体生成器可以自动执行此过程。

现代方法:

现代浏览器更喜欢 .woff 字体,因此您还可以简化代码:

@font-face {
    font-family: 'MyWebFont';
    src: url('myfont.woff') format('woff'), /* Chrome 6 , Firefox 3.6 , IE 9 , Safari 5.1  */
         url('myfont.ttf') format('truetype'); /* Chrome 4 , Firefox 3.5, Opera 10 , Safari 3—5 */
}

其他资源:

  • CSS技巧:使用@font-face:https://css-tricks.com/snippets/css/using- font-face/
  • 我可以使用fontface吗:https://caniuse.com/fontface
最新教程 更多>

免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。

Copyright© 2022 湘ICP备2022001581号-3