我在使用Ionic框架的应用程序中使用自定义字体。我将手机更新到iOS 10,使用此自定义字体时字母之间的间距大幅增长,如下所示:
这就是我声明自定义字体的方式:
@font-face {
font-family: 'helveticaneue-thin';
src:url('../fonts/helveticaneue-thin-webfont.eot');
src:url('../fonts/helveticaneue-thin-webfont.eot') format('embedded-opentype'),
url('../fonts/helveticaneue-thin-webfont.woff') format('woff'),
url('../fonts/helveticaneue-thin-webfont.ttf') format('truetype'),
url('../fonts/helveticaneue-thin-webfont.svg') format('svg');
font-weight: normal;
font-style: normal;
}
如果我评论以下一行:
url('../fonts/helveticaneue-thin-webfont.woff') format('woff'),
间距是固定的。
可以评论此行的时间导致问题吗?或者,任何人都可以解释原因吗?