如何在CSS中嵌入字体?

前端之家收集整理的这篇文章主要介绍了如何在CSS中嵌入字体?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用一些字体,我希望它的工作,而没有在客户端计算机上的这种字体。我做了这个,但不工作:
@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中的字体

#newfont{
    font-family:'EntezareZohoor2';
}
原文链接:https://www.f2er.com/css/221265.html

猜你在找的CSS相关文章