@font-face anti-aliasing on windows and mac

I too have been plagued with this on Chrome and I think I’ve just found the answer! Chrome didn’t like the default fontsquirrel.com generated 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; } To fix, i moved the SVG line: url(‘/_styles/hlc/hl-webfont.svg#HLC’) format(‘svg’) to … Read more