在 CSS 中导入字体:综合解决方案
在 Web 开发中,经常需要使用客户端可能未安装的字体电脑。为了实现这一点,CSS 提供了 @font-face 规则。但是,某些用户可能会遇到所提供的代码片段的问题:
@font-face {
font-family: EntezareZohoor2;
src: url(Entezar2.ttf) format("truetype");
}
.EntezarFont {
font-family: EntezareZohoor2, B Nazanin, Tahoma !important;
}
为了解决这个问题,这里有一个修改后的代码片段,它使用 CSS 正确定义字体:
@font-face {
font-family: 'EntezareZohoor2';
src: url('fonts/EntezareZohoor2.eot'), url('fonts/EntezareZohoor2.ttf') format('truetype'), url('fonts/EntezareZohoor2.svg') format('svg');
font-weight: normal;
font-style: normal;
}
#newfont {
font-family: 'EntezareZohoor2';
}
在此片段中,@font-face 规则是使用以下规范正确定义的:
此外,newfont 元素被定义为使用 'EntezareZohoor2' 字体设置其 font-family 属性。通过遵循这些准则,用户可以有效地在 CSS 中导入字体并确保在客户端计算机上正确显示。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3