数字字体错误

发布于 2024-11-16 09:40:02 字数 677 浏览 4 评论 0原文

@font-face {
    font-family: "digital",digital sans ef medium;
     /* Saf3+, Chrome4+, FF3.5, Opera 10+ */
}

@font-face {
    font-family: "digital",Caviar Dreams Bold;
     /* Saf3+, Chrome4+, FF3.5, Opera 10+ */
}
h1 { font-family: "digital",Helvetica,Arial,sans-serif; font-size:43px; line-height:37px; font-weight:normal;}

h2 { font-family: "digital",Helvetica,Arial,sans-serif; font-size:16px;line-height:14px; font-weight:normal;}

h3 { font-family: "digital",Helvetica,Arial,sans-serif; font-size:16px;line-height:14px; font-weight:normal; color:#c4161c; margin:6px 0 6px 0;}

我已经使用了这个 css 并通过控制面板安装了 true type 字体 ->字体,但这些字体仍然不起作用。

@font-face {
    font-family: "digital",digital sans ef medium;
     /* Saf3+, Chrome4+, FF3.5, Opera 10+ */
}

@font-face {
    font-family: "digital",Caviar Dreams Bold;
     /* Saf3+, Chrome4+, FF3.5, Opera 10+ */
}
h1 { font-family: "digital",Helvetica,Arial,sans-serif; font-size:43px; line-height:37px; font-weight:normal;}

h2 { font-family: "digital",Helvetica,Arial,sans-serif; font-size:16px;line-height:14px; font-weight:normal;}

h3 { font-family: "digital",Helvetica,Arial,sans-serif; font-size:16px;line-height:14px; font-weight:normal; color:#c4161c; margin:6px 0 6px 0;}

I have used this css and installed true type fonts through control panel -> fonts, but still these fonts are not working.

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

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

发布评论

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

评论(1

A君 2024-11-23 09:40:02

我认为你还必须包括字体的来源和格式。例如:

@font-face {
font-family: digital;
src: url("path-to-the-font-file/digital.otf") format("opentype");
}

I think you have to include the source and format of the font as well. For example:

@font-face {
font-family: digital;
src: url("path-to-the-font-file/digital.otf") format("opentype");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文