0

Web サイトに Ubuntu Web フォントを使用しています。フォントは 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%;
}
4

0 に答える 0