字体系列不适用于Firefox

时间:2016-02-24 06:57:45

标签: font-face

我希望使用字体' Bellota'在我的网站上。我下载了字体(formats-> .otf,.woff,.woff2,.eot)并将其复制到名为' font'的文件夹中。我使用代码在样式表中调用了这个字体:

@font-face {
    font-family: 'bellota';
    src: url("fonts/Bellota-Regular.eot");
    src: url("fonts/Bellota-Regular.eot") format("embedded-opentype"), 
        url("fonts/Bellota-Regular.woff2") format("woff2"), 
        url("fonts/Bellota-Regular.woff") format("woff"), 
        url("fonts/Bellota-Regular.otf"); 
}

现在字体显示为chrome,但不显示在Firefox中。是否应该专门在firefox中使用它?

1 个答案:

答案 0 :(得分:0)

Firefox does not support the EOT file type因此使整个@ font-face被破坏。删除它,只将WOFF文件放在CSS中,它现在应该可以正常工作。