字体不会在IE8上加载

时间:2014-04-24 12:59:37

标签: html css internet-explorer-8 cross-browser font-face

我尝试过在其他主题中找到的许多解决方案,但仍然无法在IE8中加载字体。 FontSquirrel转换字体,并在那里生成CSS。没有变化。 根据其他主题..它现在应该工作。但是......它没有。是否有任何解决方法使其工作?或者它只是我可以一直讨厌ie8的事情之一?

可以在此网址上看到问题:www.kokomogroningen.nl

Font-face目前:

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

1 个答案:

答案 0 :(得分:0)

来源http://css-tricks.com/

  @font-face {
  font-family: 'MyWebFont';
  src: url('webfont.eot'); /* IE9 Compat Modes */
   src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
   url('webfont.woff') format('woff'), /* Modern Browsers */
   url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
   url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}

这也可能有所帮助

Font Face not working in IE8 as expected