在CSS中使用@ font-face的Windows字体渲染问题

前端之家收集整理的这篇文章主要介绍了在CSS中使用@ font-face的Windows字体渲染问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Windows计算机上遇到了@ font-face的问题(没有什么浏览器).它在linux和osx中运行正常.

这是我正在使用的css代码(使用font-squirel生成)

检查问题的屏幕截图..似乎有2个问题

>在Windows上,字体是“跳舞”.未在基线上对齐.
>在Windows上,字体看起来没有消除锯齿.

有人有想法吗?提前致谢.

OSX& Linux的:

http://j3rn.org/images/ob_font1.png

Windows中的屏幕截图:

http://j3rn.org/images/ob_font2.png

CSS代码

@font-face {
    font-family: 'SchulbuchNordFett';
    src: url(assets/fonts/schulbuchnord-fett-webfont.eot');
    src: url('assets/fonts/schulbuchnord-fett-webfont.eot?#iefix') format('embedded-opentype'),url('assets/fonts/schulbuchnord-fett-webfont.woff') format('woff'),url('assets/fonts/schulbuchnord-fett-webfont.ttf') format('truetype'),url('assets/fonts/schulbuchnord-fett-webfont.svg#SchulbuchNordFett') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SchulbuchNordNormal';
    src: url('assets/fonts/schulbuchnord-normal-webfont.eot');
    src: url('assets/fonts/schulbuchnord-normal-webfont.eot?#iefix') format('embedded-opentype'),url('assets/fonts/schulbuchnord-normal-webfont.woff') format('woff'),url('assets/fonts/schulbuchnord-normal-webfont.ttf') format('truetype'),url('assets/fonts/schulbuchnord-normal-webfont.svg#SchulbuchNordNormal') format('svg');
    font-weight: normal;
    font-style: normal;
}

解决方法

我们的一些字体遇到了类似的问题,我很确定是什么修复了将“Truetype Hinting”设置为“Keep existing”的问题.
原文链接:https://www.f2er.com/css/215019.html

猜你在找的CSS相关文章