顺畅开放无处不在,但不在我的网站上?

时间:2014-03-02 16:28:40

标签: css fonts typekit

我一直看到字体Open Sans无处不在,而且大部分时间都非常流畅,即使在Chrome中也是如此。但是当我从adobe typekit或google fonts添加开放的sans到我的网站时,它只是锯齿状和无聊。我用谷歌搜索了很多,我似乎找不到任何有效的解决方案。

如果有人对此有一些好的信息,我们将不胜感激。谢谢。

1 个答案:

答案 0 :(得分:-1)

使用font face而不是adobe type kit对你来说更好。在http://www.fontsquirrel.com/

下载它们
@font-face {
    font-family: 'open_sansregular';
    src: url('OpenSans-Regular-webfont.eot');
    src: url('OpenSans-Regular-webfont.svg#open_sansregular') format('svg'),
         url('OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('OpenSans-Regular-webfont.woff') format('woff'),
         url('OpenSans-Regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}