Reputation:
I am using Google Fonts service and I noticed that some fonts are rendered in a different way in Chrome and Firefox.
See this example, using Kite One font.
Why does Firefox pixelate the text? What can I do via CSS or server-side to avoid this pixelation?
EDIT: I am including the font using Google Fonts api:
<link href='http://fonts.googleapis.com/css?family=Kite+One' rel='stylesheet' type='text/css'>
Upvotes: 0
Views: 793
Reputation: 445
you can try this trick : text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
The rendering of the police is part of the browser not really customisable by css.
Upvotes: 1