自定义字体的字母间距错误 - 离子

时间:2016-09-17 17:43:06

标签: css cordova ionic-framework fonts ios10

我在使用Ionic框架的应用程序中使用自定义字体。我将手机更新到iOS 10,使用此自定义字体时字母之间的间距大幅增长,如下所示:

enter image description here

这就是我声明自定义字体的方式:

@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'),

间距是固定的。

可以评论此行的时间导致问题吗?或者,任何人都可以解释原因吗?

0 个答案:

没有答案