3

目前,我正在使用@font-face 实现大约五种不同的字体。声明的语法是正确的。我正在 Firefox、Chrome 和 IE 8-10 中进行测试。我在任何时候都没有使用“localhost”访问该页面。

  1. 场景:使用 www.dev.site.com/page 从服务器访问页面

    • 火狐:有效
    • IE 8-10:有效
    • 铬:有效
  2. 场景:使用 www.dev.site.com/page 从外部服务器访问页面

    • 火狐:有效
    • IE 8-10:不起作用
    • 铬:有效

这很奇怪,因为我没有使用 localhost 来访问该站点。我添加了网络服务以完全控制目录,但这似乎没有帮助。

发生了什么,我该如何解决?

@font-face {
    font-family: 'sf_movie_posterregular';
    src: url('../fonts/customtitle-webfont.eot');
    src: url('../fonts/customtitle-webfont.eot?#iefix') format('embedded-opentype'), 
    url('../fonts/customtitle-webfont.woff') format('woff'), 
    url('../fonts/customtitle-webfont.ttf') format('truetype'), 
    url('../fonts/customtitle-webfont.svg#sf_movie_posterregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
4

0 回答 0