当我尝试将 @font-face 用于 IE 的 EOT 字体时,当字体托管在其他地方时它不起作用。它仅在本地的 Web 应用程序中有效。
这不起作用:
@font-face
{
font-family: 'AvantGardeMdBTMedium';
src: url('http://myhost.com/fonts/fontname.eot')
}
这有效:
@font-face {
font-family: AvantGardeNormal;
src: url('fontname.eot');
}
是否可以通过完整的 http 地址使用托管字体?
谢谢。