Is there any reason not to use font-smoothing: antialiased
?
Asked
Active
Viewed 2,805 times
0

ngrashia
- 9,869
- 5
- 43
- 58

Michael Silveira
- 125
- 2
- 6
-
Too subjective IMO. Quick google search yields: http://madebynico.com/webkit-font-smoothing/ – Fabrício Matté Jun 05 '14 at 06:01
-
For firefox use `-moz-osx-font-smoothing: grayscale;` to fix OSX's dodgy font rendering. – pstenstrm Jun 05 '14 at 06:32
3 Answers
1
- Not all typefaces are optimized for alternative smoothing modes
- Browser support is incredibly spotty, in fact I believe it's actually a proprietary WebKit property, i.e.
-webkit-font-smoothing
, and not in any standard (the only "standard" I am aware of isfont-smooth
which was never relevant anyway)
That's all I can think of.

BoltClock
- 700,868
- 160
- 1,392
- 1,356
0
Font-smoothing is not supported now. It is not in new css standards. http://www.w3.org/TR/WD-font/#font-smooth
From : Is there any "font smoothing" in Google Chrome?
You can try text-shadow
property
text-shadow: #fff 0px 1px 1px;
-
1That module is obsolete and has been replaced by http://www.w3.org/TR/css3-fonts I'm not sure why they didn't leave a note at least. – BoltClock Jun 05 '14 at 06:04
-
Is that so? Hmm. What should one do if you want to make your font smoother? – lindsay Jun 05 '14 at 06:06
-
@BoltClock: at the top of that working draft of 2002, is a link to the latest version. – Abhitalks Jun 05 '14 at 06:09
-
1@abhitalks: Oh, I see it now. So the two modules are one and the same. – BoltClock Jun 05 '14 at 06:10
0
Because, it is non-standard:
Though present in early (2002) drafts of CSS3 Fonts, font-smooth has been removed from this specification and is currently not on the standard track.
Ref: https://developer.mozilla.org/en-US/docs/Web/CSS/font-smooth

Abhitalks
- 27,721
- 5
- 58
- 81