Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Google Web Font's PT-sans

font-family: 'PT Sans',arial,serif;

but it looks different in Chrome and Firefox

Is there anything that I need to add so that it looks same in all browsers?

share|improve this question
7  
Different browsers may render fonts slightly differently. You can't change that. – BoltClock Jan 15 '11 at 7:53
Unless you want to implement your own font renderer, which would make your website slower than a <insert slow animal name hare>. – muntoo Jan 15 '11 at 7:56
@muntoo: Or use images/flash/PDF, which will display more consistently – Merlyn Morgan-Graham Jan 15 '11 at 7:59
@Merlyn Morgan-Graham: Images and Flash are out, Web Fonts is current trend – I-M-JM Jan 15 '11 at 13:06
@I-M-JM: I agree. Also, HTML5/SVG > Flash. But I'd rather use flash/silverlight/PDF/simple images than try to write a font renderer, as muntoo suggested. I assume it was a joke, but still.. – Merlyn Morgan-Graham Jan 16 '11 at 2:44

6 Answers

up vote 5 down vote accepted

css reset may fix the problem, I am not sure .

http://developer.yahoo.com/yui/reset/

share|improve this answer
4  
umm.. not really – andrewk Jan 15 '11 at 7:56
4  
hey its looking same in chrome and firefox now...thanks :) – Tushar Ahirrao Jan 15 '11 at 12:41
Thanks I usually always include reset but on recent HTML5 project I was using a boilerplate and they didn't include a reset this is exactly what was causing the font to look bad in chrome. – josh Jun 17 '12 at 12:46
This worked for me too. Thanks! – Andrew Serff Jul 16 '12 at 23:38

For the ChunkFive font from FontSquirrel, specifying "font-weight: normal;" stopped Firefox's rendering from looking like ass when used in a header. Looks like Firefox was trying to apply a fake bold to a font that only has one weight, while Chrome was not.

share|improve this answer
I believe this was the problem I had. Tough one to nail down! – Ben Jan 14 '12 at 6:43

I've noticed that chrome tends to make fonts a bit more sharper and firefox a bit smoother. There is nothing you can do about it. good luck

share|improve this answer

For me, Chrome web fonts look crappy until I put the SVG font ahead of WOFF and TrueType. For example:

@font-face {
    font-family: 'source_sans_proregular';
    src: url('sourcesanspro-regular-webfont.eot');
    src: url('sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg'),
         url('sourcesanspro-regular-webfont.woff') format('woff'),
         url('sourcesanspro-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

Even then, Chrome's fonts look thinner than in Firefox or IE. Chrome looks good at this point, but I usually want to set different fonts in IE and Firefox. I use a mixture of IE conditional comments and jQuery to set different fonts depending on the browser. For Firefox, I have the following function run when the page loads:

function setBrowserClasses() {
    if (true == $.browser.mozilla) {
        $('body').addClass('firefox');
    }
}

Then in my CSS, I can say

body { font-family: "source_sans_proregular", Helvetica, sans-serif; }
body.firefox { font-family: "source_sans_pro_lightregular", Helvetica, sans-serif; }

Likewise, in an IE-only stylesheet included within IE conditional comments, I can say:

body { font-family: "source_sans_pro_lightregular", Helvetica, sans-serif; }
share|improve this answer
This solves exactly my problem. – Fuhrmann May 3 at 12:56
Just a suggestion, nuke the Helvetica specific definition... sans-serif is usually defaulted to the most appropriate Helvetica-like font for the platform. Arial on windows, Helvetica on OSX, Droid-Sans on Android and Open-Sans on most others. – Tracker1 yesterday

Different browsers (and FWIW, different OSes) use different font rendering engines, and their results are not meant to be identical. As already pointed out, you can't do anything about it (unless, obviously, you can replace text with images or flash or implement your own renderer using javascript+canvas - the latter being a bit overboard if you ask me).

share|improve this answer

To avoid font discrepancies across browsers, avoid using css styles to alter the look of the font. Using the font-size property is usually safe, but you may want to avoid doing things like font-weight: bold; instead, you should download the bold version of the font and give it another font-family name.

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.