1

我尝试了一切,但我无法开始工作。

这是我的@font-face 代码的一部分:

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

它适用于 Chrome 和 Safari,但不适用于 IE 和 firefox。字体和 css 在同一个域中,我总是使用相对路径。

4

1 回答 1

1

确保所有字体格式都包含在您的 IIS 服务器环境中。默认情况下,IIS 不包含 .woff。确认 EOT、TTF 和 SVG 也存在。

于 2012-05-22T15:01:57.197 回答