0

Is there any reason not to use font-smoothing: antialiased?

ngrashia
  • 9,869
  • 5
  • 43
  • 58

3 Answers3

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 is font-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;
Community
  • 1
  • 1
4dgaurav
  • 11,360
  • 4
  • 32
  • 59
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