3

我试图让自定义字体“Duke-Fill”显示的网页是http://www.hamlinforcongress.com/helpout.php

我正在使用:

@font-face {
font-family: 'header_font';
src: url('Duke-Fill.eot?#iefix') format('embedded-opentype'), 
     url('Duke-Fill.woff') format('woff'), 
     url('Duke-Fill.ttf')  format('truetype'),
     url('Duke-Fill.svg#svgFontName') format('svg');
}
.header_font{
font-family: header_font;
}

我已经尝试了可以​​在 Internet 上找到的所有其他建议,但没有什么可以使自定义字体在 Internet Explorer 中显示。它在所有其他可以想象的浏览器中都能完美运行,但在 IE 中却不行(出乎意料)。帮助?

4

1 回答 1

5
@font-face {
    font-family: 'NimbusSanConD-Lig';
    src: url('fonts/228BFB_1_0.eot');
    src: url('fonts/228BFB_1_0.eot?#iefix') format('embedded-opentype'),
         url('fonts/228BFB_0_0.woff') format('woff'),
         url('fonts/228BFB_0_0.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

此代码适用于 IE。它是使用字体松鼠生成的

于 2012-07-30T13:55:34.650 回答