我有几个作为工具包下载的字体(ttf、eot、woff 等)。但是,在 Chrome 中,它们似乎有额外的,padding
或者margin
没有出现在 Internet Explorer 或 Firefox 中。它似乎是顶部和底部。
我做了所有明显的 css 技巧,比如:
margin: 0;
padding: 0;
但这似乎是字体本身的问题。
这是其中一种字体:
@font-face {
font-family: 'Bebas';
src: url('bebas.eot');
src: url('bebas.eot?#iefix') format('embedded-opentype'), url('bebas.woff') format('woff'), url('bebas.svg#BebasRegular') format('svg'), url('bebas.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
有人知道要修复的任何编码技巧或更好的转换/下载方法吗?