不同厚度的字体

发布于 2024-11-02 22:30:24 字数 227 浏览 1 评论 0原文

这个css可以为所有普通的Arial设置样式,但是我的项目中有Arial粗体,我该如何为它们应用粗体字体?

 @font-face {
    src:url("fonts/ARIAL.TTF");
    fontFamily: Arial;
    advancedAntiAliasing: true;
 }
 global {
    font-family: Arial;
 }

This css can set style for all normal Arial, but I have Arial bold in project, how can I apply bold font for them?

 @font-face {
    src:url("fonts/ARIAL.TTF");
    fontFamily: Arial;
    advancedAntiAliasing: true;
 }
 global {
    font-family: Arial;
 }

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

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

发布评论

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

评论(2

∞琼窗梦回ˉ 2024-11-09 22:30:24
@font-face {
   src:url("fonts/ARIAL.TTF");
   fontFamily: Arial;
   advancedAntiAliasing: true;
}
@font-face {
   src:url("fonts/ARIALBD.TTF");
   fontFamily: Arial;
   fontWeight: bold;
   advancedAntiAliasing: true;
}
@font-face {
   src:url("fonts/ARIALI.TTF");
   fontFamily: Arial;
   fontStyle: italic;
   advancedAntiAliasing: true;
}
@font-face {
   src:url("fonts/ARIALBI.TTF");
   fontFamily: Arial;
   fontWeight: bold;
   fontStyle: italic;
   advancedAntiAliasing: true;
}
     @font-face {
        src:url("fonts/ariblk.TTF");
        fontFamily: ArialBlack;
        advancedAntiAliasing: true;
     }  
@font-face {
   src:url("fonts/ARIAL.TTF");
   fontFamily: Arial;
   advancedAntiAliasing: true;
}
@font-face {
   src:url("fonts/ARIALBD.TTF");
   fontFamily: Arial;
   fontWeight: bold;
   advancedAntiAliasing: true;
}
@font-face {
   src:url("fonts/ARIALI.TTF");
   fontFamily: Arial;
   fontStyle: italic;
   advancedAntiAliasing: true;
}
@font-face {
   src:url("fonts/ARIALBI.TTF");
   fontFamily: Arial;
   fontWeight: bold;
   fontStyle: italic;
   advancedAntiAliasing: true;
}
     @font-face {
        src:url("fonts/ariblk.TTF");
        fontFamily: ArialBlack;
        advancedAntiAliasing: true;
     }  
坐在坟头思考人生 2024-11-09 22:30:24

我很确定“粗体”字体与非粗体字体是分开的。因此,如果您想使用 Arial.TFF 加粗某些内容,您还必须包含 Arialdb.tff (或类似的)。

有关 Microsoft Office 附带字体的更多信息,请访问此处。 Arial.tff 的 Arial Bold 配套产品是“Arialbd.ttf”(查看 Office XP 部分)。

I'm pretty sure that "Bold" fonts are separate than the non-bold fonts. So, if you want to bold something using Arial.TFF you'll also have to include Arialdb.tff (or similar).

More information on fonts included with Microsoft Office is here. The Arial Bold companion to Arial.tff is "Arialbd.ttf" (Look under the Office XP section).

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