不同厚度的字体
这个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我很确定“粗体”字体与非粗体字体是分开的。因此,如果您想使用 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).