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

}

这适用于 Google Chrome,但不适用于 Internet Explorer。它在 IE 本地工作,但在我发布时不起作用。

4

1 回答 1

0

Paul Irish 写了一篇关于这个主题的优秀文章: Bulletproof font-face implementation

@font-face {
font-family: 'EntypoRegular';
src: url('Entypo-webfont.eot?') format('eot'), url('Entypo-webfont.woff') format('woff'),
url('Entypo-webfont.ttf') format('truetype');
}

于 2013-03-12T07:59:50.710 回答