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

I use font-family: Myriad; font-size: 40px for some text. And, I can't believe what I see, IE shows the most quality font! Much better than opera, mozilla and chrome.

How can it be? How can I make text so nice as in IE in other browsers? If you don't believe, just try it!

Here is an edit:

http://jsfiddle.net/55Ruh/3/

Try this link in all browsers. IE (the newest version, 9) shows the best and most quality text, isn't it?

share|improve this question
"And, I can't believe what I see, IE shows the most quality font! Much better than opera, mozilla and chrome." As long as you're talking about Windows — I was confused there for a second. :-p I use a Mac and disagree IE displays it better than any browser. It can't surpass my OS X's text rendering system! </s> – Randy Marsh Oct 2 '12 at 19:02

2 Answers

up vote 10 down vote accepted

This is because IE9 introduces a new font rendering engine that is based largely on that seen in WPF's ClearType implementation. Its enhanced engine does a better job at reducing jagged edges, making fonts look smoother and better, especially at large sizes.

This breed of ClearType is different from the one seen in the rest of Windows, also known as GDI ClearType (for Windows' GDI graphics library). The old GDI ClearType is the one that Windows versions of most other browsers base their font rendering engines off, which is also the one that makes fonts look really jaggy in large sizes.

The following paragraph from the second link summarizes most of the rest of its content, that explains quite nicely why fonts look smoother in IE9's new engine:

A significant improvement over the previous version of ClearType is the use of sub-pixel positioning. Unlike the ClearType implementation found in GDI, the ClearType found in Windows Presentation Foundation (WPF) allows glyphs to start within the pixel and not just the beginning boundary of the pixel. Because of this extra resolution in positioning glyphs, the spacing and proportions of the glyphs is more precise and consistent.

See, especially, the section on Y-direction anti-aliasing with screenshots for comparison. Another quote:

ClearType in Windows Presentation Foundation (WPF) provides antialiasing on the y-direction level to smooth out any jagged edges.

share|improve this answer
1  
just a note; Most fonts were simply not designed for screen, but for putting ink on paper under pressure. – Caspar Kleijne Apr 26 '11 at 18:26

To "make text so nice as in IE in other browsers", you could try text-shadow.

text-shadow:0 0 1px #eee;

Live demo: http://jsfiddle.net/simevidas/55Ruh/5/

share|improve this answer
Use it conservatively though. Some websites use it everywhere (on body) and it's annoying. Perfect for H1's and H2's though. – Rudie Apr 26 '11 at 18:31
1  
Maybe this is one good thing about IE's lack of text-shadow support. Or maybe they avoided text-shadow on purpose just because they knew it'd be used for this. Epiphany! (not the browser) – BoltClock Apr 26 '11 at 18:41
A very handy trick. – Andy E May 17 '11 at 16:50

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.