我已定义以下@font-face
规则:
@font-face {
font-family: "MyFont";
src: url(MyFont.eot);
src: url(MyFont.eot#iefix) format('embedded-opentype'),
url(MyFont.ttf) format('truetype'),
url(MyFont.woff) format('woff');
}
由于woff
字体文件中存在一些错误,我已修复它,我需要测试字体现在是否正确。
问题是,谷歌浏览器默认情况下使用ttf
而我无法修改运行时中的@font-face
- 由于管道复杂,我也无法修改服务器上的CSS。
我们可以强制浏览器使用特定的字体文件类型吗?
答案 0 :(得分:0)
如果您只想测试woff文件现在正在运行,您可以:
@font-face
代码,以便Google Chrome只选择WOFF:font-family: "MyFont";
src: url(MyFont.woff) format('woff');