IE9 @ font-face无法正常工作,其他IE版本确实有效

时间:2014-09-23 14:25:39

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

我试图使用' Futura'在我的网站上使用FontSquirrel的@ font-face生成器。除IE9外,它适用于所有浏览器。我已经阅读了很多关于它的问题并尝试了各种解决方案:

  • smiley face
  • '中的字体名称,或"在调用font-family时引用甚至没有引号:Futura
  • 我在FontSquirrel专家模式中选择了EOT Lite

这是我目前使用的@ font-face:

@font-face {
    font-family: 'Futura_reg';
    src: url('/fonts/futura-webfont.eot');
    src: local("☺"),
        url('/fonts/futura-webfont.eot?#iefix') format('embedded-opentype'),
        url('/fonts/futura-webfont.woff2') format('woff2'),
        url('/fonts/futura-webfont.woff') format('woff'),
        url('/fonts/futura-webfont.ttf') format('truetype'),
        url('/fonts/futura-webfont.svg#futura-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

为什么IE9在所有其他浏览器中都没有显示Futura字体,甚至是IE7& IE8正在展示它。还有其他解决方案吗?

0 个答案:

没有答案