Fontsquirrel で、 webfontを使用して Web サイトを作成しました。
@font-face
{
font-family: 'Univers57Condensed';
src: url('/resources/fonts/univers-condensed-webfont.eot');
src: url('/resources/fonts/univers-condensed-webfont.eot?#iefix')
format('embedded-opentype'),
url('/resources/fonts/univers-condensed-webfont.woff') format('woff'),
url('http://hcil.snu.ac.kr/~muclipse/resources/fonts/univers-condensed-webfont.ttf')
format('truetype'),
url('/resources/fonts/univers-condensed-webfont.svg#Univers57Condensed')
format('svg');
font-weight: normal;
font-style: normal;
}
上記のように、eot、woff、svg、ttf ファイルをインポートしました。
実際には問題なく動作しますが、いくつかの問題が見られます。
IE は常に eot ファイルをロードするようですが、Google Chrome は予期せずランダムなファイルをロードするようです。
Chrome、MasOSでは普通の状態ですが、たまに文字が太くなることがあります。
レンダリングフォントの違いは、別のフォントファイルを読み込んでいることが原因だと思いますか?
eot と別の形式のみをインポートして、この問題を解決するにはどうすればよいですか?