我在页面上有一个使用自定义webfont的菜单。它是一种浓缩字体,有阴影。当我使用Firefox渲染它时看起来没问题,但在Chrome中很难阅读。这是一些抗锯齿问题。
火狐:
铬:
我已经尝试关闭阴影并使用-webkit-font-smoothing进行播放,但它没有帮助。我还能尝试什么?
相关的CSS在这里:
#submenu li {
float: left;
list-style: none;
margin: 0;
padding: 0;
color: #fff;
text-shadow:1px 1px 0px #9a60a0;
}
#submenu li a {
color: #fff;
display: block;
margin: 0;
padding: 16px 10px 12px 40px;
text-decoration: none;
position: relative;
text-shadow:1px 1px 0px #9a60a0;
height: 22px;
}
#mainmenu{
width:1000px;
height:60px;
margin:0px auto;
font-family:LeagueGothicRegular,Arial, verdana,Century gothic, sans-serif;
font-size: 18px;
}
@font-face {
font-family: 'LeagueGothicRegular';
src: url('fonts/League_Gothic-webfont.eot');
src: url('fonts/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/League_Gothic-webfont.woff') format('woff'),
url('fonts/League_Gothic-webfont.ttf') format('truetype'),
url('fonts/League_Gothic-webfont.svg#LeagueGothicRegular') format('svg');
font-weight: normal;
font-style: normal;
}