1

我正在尝试将字体导入我正在使用的网站@font-face。但它无法在Chrome上运行,有时它可以在Firefox上运行,有时不能。

所以我不知道发生了什么。

这是我迄今为止尝试过的:

@font-face {
    font-family: "Proxima Nova";
    src: url('fonts/Proxima Nova.otf') format('opentype');
}

这几乎在Firefox中有效,但Chrome甚至不想显示它,而是显示了一些完全随机大小的奇怪字体,与输入的 css 无关。

然后我尝试了这个:

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: 'proxnova';
        src: url('fonts/ProximaNovaSemibold.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
    }
}

这修复了大小问题,但现在它在任何地方都没有显示正确的字体。请帮忙。

4

1 回答 1

4

您必须为不同的浏览器使用不同的字体格式。对于那个很抱歉... :(

来源:http ://css-tricks.com/snippets/css/using-font-face/

@font-face {
    font-family: 'MyWebFont';
    src: url('webfont.eot'); /* IE9 Compat Modes */
    src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('webfont.woff') format('woff'), /* Modern Browsers */
         url('webfont.ttf')  format('truetype'), /* Safari, Android, iOS */
         url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
    }

您可以使用http://www.fontsquirrel.com/之类的网站自动生成所需的一切。

于 2012-09-24T08:10:29.303 回答