0

我已经从http://www.fontsquirrel.com/fonts/Chantelli-Antiqua下载了这个免费的字体工具包 ,我可以在任何常见的浏览器(包括旧的 IE6)中正确地看到它,但在 IE7 中。我刚刚下载了该工具包并在我安装的任何浏览器中打开了演示文件,但 IE7 看起来有些问题。是 IE 问题还是 CSS 问题?谢谢!

CSS 代码:

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

}

4

1 回答 1

1

尝试替换format('embedded-opentype')format('eot')- 应该会有所帮助。

于 2013-01-07T16:28:21.373 回答