我在我的网站上使用 Ubuntu Web Font,字体在 Linux 和 Mac OS X 上看起来不错,但在 Windows 上它们呈现不同。Windows 上字体的主要问题是字母“g”和“q”。很难区分这两者。这是我的样式表中字体定义的样子
@font-face {
font-family: 'UbuntuRegular';
src: url('assets/Ubuntu-Regular-webfont.eot');
src: url('assets/Ubuntu-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('assets/Ubuntu-Regular-webfont.woff') format('woff'), url('assets/Ubuntu-Regular-webfont.ttf') format('truetype'), url('assets/Ubuntu-Regular-webfont.svg#UbuntuRegular') format('svg');
font-weight: normal;
font-style: normal;
}
这是身体的样式定义
body {
background:#1a1a1a;
font-family:'UbuntuRegular', Arial, sans-serif;
font-size:13px;
margin:0;
padding:0;
height: 100%;
}