@ font-face无法在IE8中运行

时间:2012-07-03 13:38:34

标签: css internet-explorer-8 fonts font-face

我在所有项目中都使用@ font-face,因为某些原因它在IE8中不起作用。您可以在此处查看该网站:http://milkandhoneyhospitality.com/

正如您在普通浏览器中看到的那样,主要字体是Bebas Neue,它正在被完美呈现。但是,当我们将它带入ie8时,它使用了后备字体arial。它甚至在IE7中运行良好,所以IE8就是问题(截图在底部)

我的@ font-face很典型:

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

}

知道为什么这只会在IE8中不起作用吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

清除IE8缓存解决了问题