在css中使用自定义字体时出错

发布于 2024-11-02 19:52:34 字数 314 浏览 0 评论 0原文

虽然我尝试通过 CSS 文件为我的网站使用自定义字体,但我没有获得所需的字体,并且仅显示默认字体。请检查 css 代码,如果需要任何更改,请告诉我:)

@font-face {
    font-family: Myriad Pro;
    src: url('Myriad.ttf');
    }
#voicetext{
    color:#127bb9;
    font-size:16px;
    font-family:"Myriad Pro";
    text-align:center;
    letter-spacing:3px;
}

While I tried to use custom font for my website through the CSS file, I'm not getting the required font and it shows only the default font. Please Check the css code and let me know if any changes needed :)

@font-face {
    font-family: Myriad Pro;
    src: url('Myriad.ttf');
    }
#voicetext{
    color:#127bb9;
    font-size:16px;
    font-family:"Myriad Pro";
    text-align:center;
    letter-spacing:3px;
}

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

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

发布评论

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

评论(2

别靠近我心 2024-11-09 19:52:34

不幸的是,它并不像这样简单。对于真正的跨浏览器解决方案,您需要参考的不仅仅是 TTF 版本。

这个问题:How to embed fonts in HTML? 有一个完整的列表,并且指向 Paul Irish 的“Bulletproof Web 字体” 博客条目的链接,该博客条目可满足您的需求针对所有浏览器的怪癖。

如果您赶时间,并且对具体细节不感兴趣,FontSquirrel 的 Bulletproof @font-face 生成器 似乎利用了博客文章中的提示。

Unfortunately, it isn't as straight forward as this. For a truly cross-browser solution, you will need to reference more than just the TTF version.

This question: How to embed fonts in HTML? has a full list, and links to Paul Irish's "Bulletproof web fonts" blog entry that caters for all the browser quirks.

If you're in a hurry, and not interested in the specifics, FontSquirrel's Bulletproof @font-face generator seems to utilize the hints from the blog post.

泛滥成性 2024-11-09 19:52:34

我的第一个猜测可能是您将字体文件上传到了错误的位置。
目前,您需要将 Myriad.ttf 文件放在与 css 文件相同的目录中。

My first guess is probably that you've uploaded your font file at the wrong place.
Currently, you'll need a Myriad.ttf file in the same directory as your css file.

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