17
I’m using a font-kit generated on Font Squirrel and am getting different results on Mac OS X and Windows environment.
Would there be some way around the bad or different rendering of the Internet Explorer source?
On Mac OS X:
In Windows 7:
@font-face {
font-family:'Exo';
src: url('/sys/resources/font-kits/exo/exo-regular.eot');
src: url('/sys/resources/font-kits/exo/exo-regular.eot?#iefix') format('embedded-opentype'),
url('/sys/resources/font-kits/exo/exo-regular.svg#ArchitectsDaughterRegular') format('svg'),
url('/sys/resources/font-kits/exo/exo-regular.woff') format('woff'),
url('/sys/resources/font-kits/exo/exo-regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
What is the font format? How is font smoothing set in windows?
– utluiz
@font-face { font-family: 'Exo'; src: url('/sys/Resources/font-kits/exo/exo-regular.eot'); src: url('/sys/Resources/font-kits/exo/exo-regular.eot?#iefix') format('Embedded-opentype'), url('/sys/Resources/kits-font/exo/exo/exo-regular.svg#Architectsdaughterregular') format('svg'), url('/sys/Resources/font-kits/exo/exo-regular.Woff') format('Woff'), url('/sys/Resources/font-kits/exo/exo-regular.ttf') format('truetype'); font-Weight: normal; font-style: normal; }
– ninja_corp
clear-type in windows
– ninja_corp