我已经从fontsquirrel.com为我们客户的某个网站生成了一个@ font-face工具包。我们在staging(http)和live(https)服务器上运行该站点。该站点基于.NET构建
我遇到的问题是IE8上没有加载字体。它在IE9,Chrome,Firefox和Safari中运行良好。
我采取的步骤如下:
@font-face
代码(下方)@font-face {
font-family: 'font-name';
src: url('../../fonts/font-name-webfont.eot');
src: url('../../fonts/font-name-webfont.eot?#iefix') format('embedded-opentype'),
url('../../fonts/font-name-webfont.woff') format('woff'),
url('../../fonts/font-name-webfont.ttf') format('truetype'),
url('../../fonts/font-name-webfont.svg#font-name') format('svg');
font-weight: normal;
font-style: normal;
}
我一直在研究可能的修复方法,到目前为止,尝试过以下方面的失败:
注意:
我上传到登台服务器的测试在IE8上工作正常。这表明它与服务器相关或者我们的CSS中存在某些不妥之处。我99%肯定我已经排除了CSS中的任何可疑之处。
非常感谢任何帮助!