CSS、外部字体

发布于 2024-08-30 12:49:38 字数 67 浏览 1 评论 0原文

我对 css 有一个大问题,如何在 CSS 中双关这个字体 MyriadPro-It.otf?

谢谢 !

I have a big problem with css, how can I pun this font MyriadPro-It.otf in CSS?

Thanks !

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

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

发布评论

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

评论(3

笑看君怀她人 2024-09-06 12:49:38

您可以在样式表中添加此 css。

@font-face {
        font-family: "MyriadPro";
        font-style: normal;
        src: url(../fonts/MyriadPro-It.eot); /*if IE */
        src: local("Grandesign Regular"), url("../fonts/MyriadPro-It.ttf") format("truetype"); /* non-IE */
}

you can add this css in your style sheet.

@font-face {
        font-family: "MyriadPro";
        font-style: normal;
        src: url(../fonts/MyriadPro-It.eot); /*if IE */
        src: local("Grandesign Regular"), url("../fonts/MyriadPro-It.ttf") format("truetype"); /* non-IE */
}
腹黑女流氓 2024-09-06 12:49:38

看看这个资源:Mozilla CSS 字体。

这是一份帮助您入门的指南。另外,请查看 Google,它是您的朋友。 :)

Take a look at this resource: Mozilla CSS font face.

It's a guide that will help you get started. Also, check out Google, it's your friend. :)

哽咽笑 2024-09-06 12:49:38

对于您的本地计算机,只需安装字体,您应该能够使用 css 访问它(您可能需要引号?)。

如果你希望它出现在任何地方(这可能是你的问题的意思),那么你最好检查一下这些骗子。

For your local machine, just install the font, and you should be able to access it with css (you might need quotes?).

If you want it to show up everywhere (which you probably meant with your question), then you better check out the dupes.

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