css – Firefox webfonts不加载

前端之家收集整理的这篇文章主要介绍了css – Firefox webfonts不加载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只在Firefox中遇到webfonts的问题,所有其他浏览器(包括IE)都可以正常工作。

我的问题是webfonts根本不会加载。

我看过这个可能的解决方案,编辑htaccess文件(http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems),但我没有运气。

我唯一可以说的是在Firefox的错误控制台我得到以下警告:

Error in parsing value for “src”. Skipped to the next declaration.

以下是我的字体代码示例:

@font-face {
    font-family:AngelinaRegular;
    src:url(../fonts/angelina-webfont.eot);
    src:url(../fonts/angelina-webfont.eot?iefix) format(eot),url(../fonts/angelina-webfont.woff) format(woff),url(../fonts/angelina-webfont.ttf) format(truetype),url(../fonts/angelina-webfont.svg#webfontOvuhCGpN) format(svg);
    font-weight:normal;
    font-style:normal;
}

有任何想法吗?

解决方法

根据我的经验,Firefox在@ font-face规则中期待引用报价:
@font-face {
    font-family: AngelinaRegular;
    src: url('../fonts/angelina-webfont.eot');
    src: url('../fonts/angelina-webfont.eot?#iefix') format('embedded-opentype'),url('../fonts/angelina-webfont.woff') format('woff'),url('../fonts/angelina-webfont.ttf') format('truetype'),url('../fonts/angelina-webfont.svg#webfontOvuhCGpN') format('svg');
    font-weight: normal;
    font-style: normal;
}
原文链接:https://www.f2er.com/css/218113.html

猜你在找的CSS相关文章