@ font-face适用于localhost,但不适用于在线

时间:2013-07-10 19:49:01

标签: css google-chrome cross-browser font-face

我为每个问题寻找答案,但没有任何作用......

我的字体在所有浏览器上本地工作,但是当我上传网站时,该字体仅适用于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是:Site URL 蓝色标题应该是这个字体...

1 个答案:

答案 0 :(得分:1)

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

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

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