@ font-face无法在Android浏览器中使用

Eli*_*rey 6 css android google-chrome font-face

除了和(来自http://oftn.org/css/global.css)之外,以下@font-face声明在每个主要浏览器中都能正常工作:(including Chrome for Android)Android BrowserFirefox for Android

@font-face {
        font-family: "OFTN Aller";
        src: url("../fonts/OFTN-Aller-Bold.woff") format("woff"),
             url("../fonts/OFTN-Aller-Bold.ttf") format("truetype");
        font-weight: bold;
        font-style: normal;
}
@font-face {
        font-family: "OFTN Aller";
        src: url("../fonts/OFTN-Aller.woff") format("woff"),
             url("../fonts/OFTN-Aller.ttf") format("truetype");
        font-weight: normal;
        font-style: normal;
}
Run Code Online (Sandbox Code Playgroud)

我能做错什么?

截图

Android 4.0.3浏览器:

oftn.org的屏幕截图

Windows 7上的Chrome 19:

oftn.org的屏幕截图

Windows 7上的Firefox 13:

oftn.org的屏幕截图

Eli*_*rey 0

我对 OFTN Aller(粗体)进行了子集化,因为我不再将它用于其他标题(仅徽标),这似乎解决了问题。