私もChromeでこれに悩まされており、答えを見つけたばかりだと思います。
Chromeは、デフォルトのfontsquirrel.comで生成されたCSSを好みませんでした。
@font-face {
font-family: 'HLC';
src: url('/_styles/hlc/hl-webfont.eot');
src: url('/_styles/hlc/hl-webfont.eot?#iefix') format('embedded-opentype'),
url('/_styles/hlc/hl-webfont.woff') format('woff'),
url('/_styles/hlc/hl-webfont.ttf') format('truetype'),
url('/_styles/hlc/hl-webfont.svg#HLC') format('svg');
font-weight: normal;
font-style: normal;
}
修正するために、SVG行を移動しました。
url('/_styles/hlc/hl-webfont.svg#HLC') format('svg')
リストの一番上に。今、アンチエイリアスフォントが表示されます!Chromeが最初になりたいと思います...
/* THIS WORKS FOR ME */
@font-face {
font-family: 'HLC';
src: url('/_styles/hlc/hl-webfont.eot');
src: url('/_styles/hlc/hl-webfont.svg#HLC') format('svg'),
url('/_styles/hlc/hl-webfont.eot?#iefix') format('embedded-opentype'),
url('/_styles/hlc/hl-webfont.woff') format('woff'),
url('/_styles/hlc/hl-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
それがあなたにもうまくいくことを願っています。楽しみ!