嗨,我有一个字体问题,它的渲染就像在顶部有边距一样,并且相同的字体在所有其他浏览器中都可以正常工作(我已经在 windows 和 ubuntu 中进行了测试)。
我的问题似乎是
在其他浏览器中
我已经使用字体松鼠来生成字体,这是它生成的代码
@font-face {
font-family: 'garrisons';
src:url('../fonts/garrisons-regular-webfont.ttf');
src: url('../fonts/garrisons-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/garrisons-regular-webfont.woff') format('woff'),
url('../fonts/garrisons-regular-webfont.ttf') format('truetype'),
url('../fonts/garrisons-regular-webfont.svg#garrison_sansregular') format('svg');
font-weight: normal;
line-height:30px;
}
@font-face {
font-family: 'garrisonsb';
src: url('../fonts/garrisons-bold-webfont.ttf');
src: url('../fonts/garrisons-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/garrisons-bold-webfont.woff') format('woff'),
url('../fonts/garrisons-bold-webfont.ttf') format('truetype'),
url('../fonts/garrisons-bold-webfont.svg#garrison_sansbold') format('svg');
font-weight: normal;
line-height:30px;
}
可能的解决方案是什么?提前致谢。