我遇到了同样的问题,我可以使用以下代码将其清除:
@font-face {
font-family: 'League Gothic';
src: url('/assets/fonts/league_gothic-webfont-webfont.eot');
src: local('‚ò∫'),
url(data:font/woff;charset=utf-8;base64,/* base64-encoded font here */) format('woff'),
url(data:font/truetype;charset=utf-8;base64,/* base64-encoded font here */) format('truetype'),
url('/assets/fonts/league_gothic-webfont-webfont.svg#webfontu5sqNtGI') format('svg');
font-weight: normal;
font-style: normal;
}
这主要是从FontSquirrel生成的,然后稍作修改(我删除了 local() 内容并替换了垃圾字符)。
这清除了我的字母间距问题。