我有一个自定义字体,该字体无法在Android设备上使用,但可以在chrome,Firefox和IE 11中使用。
在服务器上,我有2个字体文件,称为:
 Ventilla Script_0.eot和Ventilla Script_0.ttf

目前,我的CSS中包含以下内容:

  /* Fonts */
    @font-face {
        font-family: 'Ventilla Script';
        src: url('../fonts/Ventilla Script_0.eot?') format('embedded-opentype');
        }
    @font-face {

        font-family: Ventilla Script;
        src: local(Ventilla Script_font), url('../fonts/Ventilla Script_0.ttf') format('opentype');

    }


据我所知.tff规则应可在Android浏览器上使用,任何人都可以告诉我可能需要添加的内容。

谢谢

伊恩

最佳答案

您应该使用Squirrel font generator

它在Android设备上为我工作。

关于android - 自定义字体不会嵌入Android上,我在做什么错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25953012/

10-10 16:15