我正在使用Google的early access网络字体中的Noto Sans Hebrew
字体。像往常一样,Windows上存在渲染问题。
在IE上,事情看起来......实际上非常好:
在Firefox& Chrome,事情看起来有点不稳定(请注意左边的第四个字母):
现在对于chrome,我能够通过应用svg格式来修复它
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'Noto Sans Hebrew';
src: url('NotoSansHebrew-Regular.svg') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Noto Sans Hebrew';
src: url('NotoSansHebrew-Bold.svg') format('svg');
font-weight: bold;
font-style: normal;
}
}
但火狐不会让步。我尝试给它一个特定的格式,就像我使用chrome一样(我尝试woff
,eot
,ttf
,svg
),但没有。它看起来像这样。
我该怎么办?
P.S。 不要告诉我有关fontsquirrel的事。除了他们将noto-sans列入黑名单之外,我已经尝试使用他们建议的格式来定义font-face(你从谷歌导入的css文件也是just like it anyway)。