我在html电子邮件中使用自定义字体,但iOS设备中没有显示文字 - 文本似乎是透明的(您可以复制/粘贴它)。所有其他设备都没问题。
我的代码:
@font-face {
font-family: 'The Font';
src: url("http://example.net/released-emails/new_template/thefont.ttf") format('truetype'),
url("http://example.net/released-emails/new_template/thefont.eot") format('eot'),
url("http://example.net/released-emails/new_template/thefont.woff") format('woff');
font-weight: normal;
font-style: normal;
}
body, p, a, span, strong {
font-family: 'The Font', Verdana, sans-serif !important;
}
修改 我删除了eot和woff。单独使用ttf,它可以毫无问题地工作。