1

我一直在寻找我的问题的答案,但没有任何效果......

我的字体在所有浏览器上都可以本地使用,但是当我上传网站时,字体只能在 Firefox 和 IE 中使用?

这是我的CSS:

@font-face {
    font-family: 'BebasNeueRegular';
    src: url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.eot');
    src: url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.eot?#iefix') format('eot'),
         url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.woff') format('woff'),
         url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.ttf') format('truetype'),
         url('http://www.ist-immobilien.at/fonts/beba/bebasneue-webfont.svg#webfontX0YNjQNl') format('svg');
    font-weight: normal;
    font-style: normal;

}

我也使用了相对网址,但它没有做出改变。字体在服务器上..我不知道,什么问题..

Siteurl 是:站点 URL 蓝色标题应该是这种字体...

4

1 回答 1

1

在您的 CSS 中,您实际上是在寻找一种名为'BebasNeueRegular'(名称中带有引号)的字体:

font-family: \'BebasNeueRegular\', sans-serif;

删除那些反斜杠,它会工作。

于 2013-07-10T19:53:20.033 回答