我正在尝试在我的博客博客上使用自定义图标字体。如果我理解正确的话,firefox 要求下载文件来自同一个域。它在我的 chrome 上运行良好。我也在使用类似的谷歌网络字体。我用谷歌代码托管图标。
在这里:http: //www.tipsontricks.com/p/test.html Chorme 和其他工作但不是 Firefox
这是我正在使用的代码
@font-face {
font-family: 'JustVector';
src: url('xyz.eot');
src: url('xyz.eot?#iefix') format('eot'),
url('xyz.woff') format('woff'),
url('xyz.ttf') format('truetype'),
url('xyz#webfontkw9J4lGf') format('svg');
font-weight: normal;
font-style: normal;
}
.iconfont{
font-family: 'JustVector';
}
任何帮助,将不胜感激 :)