Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use the Google Webfonts service on my website and rely heavily on it. It renders fine on most browsers, but in Chrome on Windows it renders especially bad. Very choppy and pixelated.

What i have found out so far is that Chrome requires the .svg format font to be loaded first. The font i am using however, called Asap, was only available in .woff. I converted it to .svg using a free online service, but when i added that to my stylesheet (before the .woff), it didn't change anything.

I've also tried:

-webkit-font-smoothing: antialiased;
text-shadow: 0px 0px 0px;

Hoping that either would help the text render more smoothly.

Right now i've run out of ideas and i would hate to change fonts. Does anyone have an idea how i can solve this problem? I've been using the Adobe Browserlab to test the rendering, seeing as how i only own a mac. The link to the site is: www.symvoli.nl/about

Thanks in advance!

share|improve this question
1  
Oh wow, thanks for bringing this up, I never noticed it before. Google webfonts are looking really choppy on my own sites as well. – Cody Bonney Jun 8 '12 at 17:13

6 Answers

up vote 6 down vote accepted

A fix has been suggested here by calling the .svg file first, http://www.adtrak.co.uk/blog/font-face-chrome-rendering/

share|improve this answer

Problem

The issue is created because chrome actually cannot render TrueType fonts with correct anti-aliasing. However, chrome still renders SVG files well. If you move the call for your svg file up in your syntax above the woff, chrome will download the svg and use it instead of the woff file. Some tricks like you propose work well, but only on certain font sizes.

Solution:

The Fontspring bulletproof syntax modified to serve the svg first:

@font-face {
    font-family: 'MyWebFont';
    src: url('webfont.eot'); 
    src: url('webfont.eot?#iefix') format('embedded-opentype'),
         url('webfont.svg#svgFontName') format('svg'),
         url('webfont.woff') format('woff'),
         url('webfont.ttf')  format('truetype');
}

Further reading:

share|improve this answer
1  
It's a shame this is still an issue (last update Apr 24, 2013) code.google.com/p/chromium/issues/detail?id=137692#c104 – Jedidja May 14 at 22:12
-webkit-text-stroke: 0.5px;

use it only on large text, since it will affect your page performance.

share|improve this answer

It could just be the font your using "asap" doesn't render all that well at certain sizes. I changed the size of your h1 from 3.5em to 50px and it looks a little better. May not be the perfect solution but I have noticed that a lot of google webfonts can be unpredictable

share|improve this answer
1  
But this unfortunately doesn't explain why it does render perfectly in OS X based browsers and, to my own surprise, Internet Explorer. But if anything, i will definitely look into this solution to at least try to smooth it out a little – Joey Jun 8 '12 at 17:19
2  
Google Chrome uses anti-aliasing but the text looks more pixelated than in other browsers because it only supports horizontal anti-aliasing. – Keith Jun 8 '12 at 17:26
1  
There is some good info about this and a possible fix at this link - vandersterren.com/blog/2012/04/… – Keith Jun 8 '12 at 17:32

I develop in Firefox. My experience is that FF displays ttf fonts very well without any extra rules (beyond the @font-face calling the url for the font file). Chrome, however, is a different story. Even with with the -webkit-font-smoothing: antialiased; rule it still displays any font quite raggedly. Safari doesn't seem to have that problem, so it's not inherently Webkit that can't render a font cleanly, it's a Chrome problem.

I haven't tried adding the -webkit-text-stroke: 0.5px; rule, but will.

Of the answers above I really like Tom Sarduy's answer best. Aside from a good description of the problem, he gives a great @font-face stack to use to cover all the major browsers.

share|improve this answer

Another link reference for web font rendering in chrome -

http://www.fontspring.com/blog/smoother-web-font-rendering-chrome

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.