Is there any CSS property to make font smooth in IE?

scottg

New Member
Do you mean anti-aliasing? What version of IE? I dont know of any scripts, but IE 7 and 8 have greatly improved the appearance of text.
 

PixelPusher

Super Moderator
Staff member
I do not believe there is a css property for font smoothing, that is controlled by the web browser.
 

LouTheDesigner

New Member
I think you actually can in css 3...

font-smooth: always;

Unfortunately, and rather ironically, css 3 won't be supported by IE until version 9 comes out.
 

PixelPusher

Super Moderator
Staff member
I think you actually can in css 3...

font-smooth: always;

Unfortunately, and rather ironically, css 3 won't be supported by IE until version 9 comes out.

Problem is CSS 3 will not be fully supported for many years, so while it may work in IE9 it will not be a consistent solution. (which is unfortunate)
 

PixelPusher

Super Moderator
Staff member
so if css 3 is not supported by the existing IE's that mean that i can't use this buttons http://www.smashingmagazine.com/2009/12/02/pushing-your-buttons-with-practical-css3/

Nope. If you take a look at the page in IE it is styled so that those browsers that cannot support the css3 enhancements still look ok, buit those that can Safari and Chrome (Firefox partially), they look even better. Its called progressive enhancement.

For instance look at this page in the different browsers:

http://www.zurb.com/playground/radioactive-buttons
 
Top