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?
|
I am using Google Web Font's PT-sans
but it looks different in Chrome and Firefox Is there anything that I need to add so that it looks same in all browsers? |
||||
|
css reset may fix the problem, I am not sure . |
|||||||||||||
|
|
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. |
|||
|
|
|
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 |
|||
|
|
|
For me, Chrome web fonts look crappy until I put the SVG font ahead of WOFF and TrueType. For example:
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:
Then in my CSS, I can say
Likewise, in an IE-only stylesheet included within IE conditional comments, I can say:
|
|||||
|
|
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). |
|||
|
|
|
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. |
|||
|
|
<insert slow animal name hare>. – muntoo Jan 15 '11 at 7:56