xxx.eot Web 字体文件在 IIS 6.0 服务器上无法正常工作
我使用两种网络字体“NanumGothic.eot”
和“NanumGothic.woff”,CSS 样式如下。
该系统托管基于 Windows Server 2003
和 IIS 6.0 以及本地远程 MS-SQL Server 2008 的
@font-face {
font-family: ngweb;
src:url('NanumGothic.woff') format('woff'); /* Modern Browsers */
}
@font-face {
font-family: ngie;
src:url('NanumGothic.eot'); /* IE6-IE8 */
}
Web 服务。.woff文件在非 IE 6、IE 7 和 IE 8 Web 浏览器上运行良好,甚至在 IE 9 上也能正常运行这里很好)。
从 IE 6 到 IE 8,它们都可以使用我所知道的 .eot 字体文件。
但是,该服务器根本不显示网络字体(在 IE 6 ~ IE 8 上)。
我的 IE 8 浏览器安全设置已启用网络字体下载。
其他类似的系统也以良好的方式提供相同的 .eot 文件。
我在Google上搜索了有关sytle CSS标签并将其应用到系统上,但没有任何改进。
为什么要这样对我MS???
服务器系统重启可以解决这个问题吗?真的吗?
I'm using two web fonts 'NanumGothic.eot'
and 'NanumGothic.woff', with CSS style like below.
This system is hosting web services, based on Windows Server 2003
and IIS 6.0 and local remote MS-SQL Server 2008.
@font-face {
font-family: ngweb;
src:url('NanumGothic.woff') format('woff'); /* Modern Browsers */
}
@font-face {
font-family: ngie;
src:url('NanumGothic.eot'); /* IE6-IE8 */
}
.woff file works fine at NON-IE 6, IE 7, and IE 8 web browsers, even on IE 9(works fine here).
From IE 6 to IE 8, they are works with .eot font file that I know.
But, this server doesn't present web font at all(on IE 6 ~ IE 8).
My IE 8 browser security setting is enabled web font downloadable.
Other similar system's are service same .eot file in good way.
I searched on Google, about sytle CSS tag and applied them on the system, but there's no improvements.
Why do this to me MS???
Server system reboot could solve this problem? really?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不能说对于 IIS6,但在 IIS7 中,您需要为字体添加 mime 类型。你调查过这个吗?
I cannot say for IIS6 but in IIS7 you need to add a mime type for the font. Have you looked into this?