Firefox字体表面渲染与Chrome相似

dud*_*ude 8 css firefox text-rendering

@font-face在CSS 中遇到了麻烦.我使用的字体在每个浏览器中看起来都非常不同.

在Firefox中查看此示例:

火狐

在Chrome中:

铬

我不知道是什么原因引起了这个问题.我已经尝试使用text-rendering,我也尝试url@font-face声明中更改-properties 的顺序.

我使用的是Windows 7 Professional和Firefox V30.

有人可以告诉我这个问题的原因,并告诉我如何解决它?

非常感谢.

//编辑:这是@font-face我正在使用的声明:

@font-face {
    font-family: 'MyFont';
    src: url('myFont.eot');
    src: url('myFont.eot?#iefix') format('embedded-opentype'),
        url('myFont.svg#myfont') format('svg'),
        url('myFont.woff') format('woff'),
        url('myFont.ttf') format('truetype');
    font-style: normal;
    font-weight : normal;
}
Run Code Online (Sandbox Code Playgroud)

正如我上面所写,我已经按照这个命令的顺序玩了.

在我的特定问题中,您可以看到此页面(页脚)显示问题.

dud*_*ude 3

这似乎是一个字体问题,因为所有对其他人有效的机会都不会影响该问题。切换到其他字体是目前唯一的解决方案。