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.

Are there any non-hacky html/css/jquery tricks to achieve better font rendering for Firefox users? The screenshots below (Safari 5/Chrome 20/Firefox 13) show that Firefox is rendering user-agent fonts as well as typekit served fonts much bolder.

User-agent font (Helvetica) User-agent font (Helvetica)

font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
letter-spacing: 0.025em;
color: #333;

Typekit-served font (Meta) Typekit-served font (Meta)

font-family: "ff-meta-web-pro", Helvetica, Arial, sans-serif;
letter-spacing: 0.025em;
color: #333;

And in both cases these font sizes get used for h1, h2 and p:

font-size: 1.4em;

font-size: 1.1em;

font-size: 0.75em;

Thanks!

share|improve this question
What's the relevant HTML markup? – Neil Jul 8 '12 at 22:25
@Neil I put the CSS in the edited question... – Systembolaget Jul 8 '12 at 22:37

2 Answers

Use a CSS reset before you do your css:

share|improve this answer
I'm using the YUI reset already :( – Systembolaget Jul 8 '12 at 22:46
nuts that was my great idea – Francis Yaconiello Jul 8 '12 at 22:54

You don't specify which OS you are using, but it looks as if Firefox is using ClearType rather than standard grey-scale antialiasing.

share|improve this answer
The OS was mentioned in the question headline ;) All 6 screenshots were done from OS X browsers. Wasn't ClearType brought in with Microsoft's Windows XP? I got my hands on older Apple laptops with older Safari, Chrome and Firefoxes - same thing: Firefox renders much bolder :( – Systembolaget Jul 8 '12 at 23:35
Sorry, I completely overlooked the title there, oops! I don't know whether the Mac has an equivalent to ClearType. – Neil Jul 9 '12 at 23:34
Spent an entire night and day; looks like one just has to live with Firefox's rickety rendering. – Systembolaget Jul 9 '12 at 23:48

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.