@ font-face无法在Firefox 3.6.14中工作 - WOFF或TTF

时间:2011-03-03 23:53:30

标签: css font-face

@ font-face无法在Firefox 3.6.14中工作 - WOFF或TTF

@font-face {
    font-family: "A-B";
    src: url("fonts/AlexandriaFLF-Bold.woff") format("woff"),
         url("fonts/AlexandriaFLF-Bold.ttf") format("truetype"),
         url("fonts/AlexandriaFLF-Bold.svg#webfontm3eq21Q4") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'A-BI';
    src: url("fonts/AlexandriaFLF-BoldItalic.woff") format("woff"),
         url("fonts/AlexandriaFLF-BoldItalic.ttf") format("truetype"),
         url("fonts/AlexandriaFLF-Bold.svg#webfontszsn4DPI") format("svg");
    font-weight: normal;
    font-style: normal;
}

任何人都可以启发我吗?

2 个答案:

答案 0 :(得分:5)

FIX:

我正在使用.htaccess文件进行mod重写,它影响了@ font-face ......

解决方法是将其放在.htaccess文件中:

<FilesMatch "\.(ttf|otf|eot|woff)$">
<IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>

答案 1 :(得分:-3)

我也想加入。由于将网站引用为www.domain.com而不是domain.com,我只是遇到了类似的问题。

这是我的主样式表中作为字体css文件的导入

@import url('http://www.domain.com/font.css'); - not working


@import url('http://www.domain.com/font.css'); - working