本文介绍了如何在CSS中嵌入字体?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用一些字体,我希望它在客户端计算机上没有这种字体。我已经这样做但不工作:
I want to use some fonts and I want it to work without having this font on the client computer. I have done this but doesn't work:
@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;
}
在css中定义/使用字体的行>
Following lines to define/use the font in css
#newfont{
font-family:'EntezareZohoor2';
}
这篇关于如何在CSS中嵌入字体?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!