我正在尝试使用
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"); }