css font-face with Arabic fonts

前端之家收集整理的这篇文章主要介绍了css font-face with Arabic fonts前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用 Arabic external font
@font-face {
    font-family: "My";
    src: url(GE_SS_TV_Bold.otf) format("truetype");
}
p.customfont { 
    font-family: "My",Verdana,Tahoma;
}

它看起来像这样:

但它应该看起来像:

解决方法

嗯…你正在使用的浏览器是什么,你正在使用的操作系统是什么. Font Faces具有不同的渲染,具体取决于平台/软件.

同样在你的文档中你似乎混合了truetype和opentype;)otf = OpenType字体,ttf =通常是TrueType字体.如果你改写怎么样?

@font-face {
    font-family: "My";
    src: url(GE_SS_TV_Bold.otf) format("opentype");
}

如果你需要一种不同格式的字体,你就有了这些文件

@font-face {
    font-family: "My";
    src: url(GE_SS_TV_Bold.otf) format("opentype"),src: url(GE_SS_TV_Bold.ttf) format("truetype");
}
原文链接:https://www.f2er.com/css/217851.html

猜你在找的CSS相关文章