我的网站上安装了两种网络字体,一种在 Firefox 上运行,而另一种则没有。如果您在 Chrome 上查看,这两种 Google 网络字体都可以完美运行。这是我的代码:
@font-face {
font-family: 'UnitSlabProLight';
src: url('/unitslabpro-light-webfont.eot');
src: url('/unitslabpro-light-webfont.eot?#iefix') format('embedded-opentype'),
url('/unitslabpro-light-webfont.woff') format('woff'),
url('/unitslabpro-light-webfont.ttf') format('truetype'),
url('/unitslabpro-light-webfont.svg#UnitSlabProLight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'UnitSlabProBlack';
src: url('/unitslabpro-black-webfont.eot');
src: url('/unitslabpro-black-webfont.eot?#iefix') format('embedded-opentype'),
url('/unitslabpro-black-webfont.woff') format('woff'),
url('/unitslabpro-black-webfont.ttf') format('truetype'),
url('/unitslabpro-black-webfont.svg#UnitSlabProBlack') format('svg');
font-weight: normal;
font-style: normal;
}
网站是http://www.journeytoearth.com/
提前感谢您的任何帮助和解决方案。