字体脸在Android冰淇淋三明治浏览器上不起作用

字体脸在Android冰淇淋三明治浏览器上不起作用,android,css,font-face,Android,Css,Font Face,我在我的网站(Teuton23ProRegular)上使用字体,但在Android ICS(试用过本机浏览器和Firefox)上无法使用字体,在我试用过的所有其他桌面和手机上都很好看(Android姜饼、iPhone、Win Mobile)。Mobile firebug发现了以下错误: Error: downloadable font: not usable by platform (font-family: "Teuton23ProRegular" style:normal weight:no

我在我的网站
(Teuton23ProRegular)
上使用字体,但在
Android ICS
(试用过本机浏览器和Firefox)上无法使用字体,在我试用过的所有其他桌面和手机上都很好看
(Android姜饼、iPhone、Win Mobile)
。Mobile firebug发现了以下错误:

Error: downloadable font: not usable by platform (font-family: "Teuton23ProRegular" style:normal weight:normal stretch:normal src index:2)
Source File: http://[sitename]/../css/fonts/teuton23pro-webfont.woff
Line: 0
源代码:

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

另一件有趣的事情是,我从WorksFine
(“Trade Gothic W02 Bold 2”)
获得的字体


如果您有任何想法,我们将不胜感激。

如果Trade Gottic W02 Bold 2正常工作,但不是Teuton23ProRegular,那么通过逻辑推理,问题可能在于字体文件的内容或字体声明

我不熟悉Android IceCream Sandwich浏览器的字体呈现及其使用的格式(给出错误通知后,看起来它使用了.woff),但Teuton23ProRegular字体面文件似乎不起作用,因为:

  • a) 它缺少eot、eot fix、woff、truetype或svg格式之一 (无论冰淇淋使用哪种,但特别强调.woff)
  • (b) 它确实有正确的字体格式变体,但有错误或错误 腐化
  • c) 你在某个地方有一些错误的逗号 你的密码
  • d) 您无意中没有上载正确格式的文件 因此它没有被加载
请通过比较您申报的Teuton23与贸易哥特式等价物的方式,再次检查以上所有内容