CSS @ font-face在IE8中不工作

前端之家收集整理的这篇文章主要介绍了CSS @ font-face在IE8中不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试过阅读多篇文章,如何处理自定义字体在IE,但他们似乎从来没有为我工作。我试图将字体转换为EOT,但这似乎没有工作。我不知道我做错了什么,所以我会发布我的代码
@font-face {
  font-family: "Klavika Regular";
    src: url('../fonts/klavika.eot');
    src: local('☺'),url('../fonts/klavika.woff') format('woff'),url('../fonts/klavika.ttf') format('truetype'),url('../fonts/klavika.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

解决方法

这在ie8 / 9中工作

http://dev.bowdenweb.com/a/fonts/serif/alegreya/demo.html

@font-face {
    font-family: 'AftaserifRegular';
    src: url('AftaSerifThin-Regular-webfont.eot');
    src: url('AftaSerifThin-Regular-webfont.eot?#iefix') format('embedded-opentype'),url('AftaSerifThin-Regular-webfont.woff') format('woff'),url('AftaSerifThin-Regular-webfont.ttf') format('truetype'),url('AftaSerifThin-Regular-webfont.svg#AftaserifRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}
原文链接:https://www.f2er.com/css/220416.html

猜你在找的CSS相关文章