cheatsheets/css-antialias.md

681 B

title category updated intro
CSS antialiasing CSS 2017-10-13 Here's a 4-line snippet on how to get beautiful, antialiased text with CSS.

Antialias

{: .-prime}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

Support

  • Firefox 25+ on OSX
  • Webkits (Chrome, Safari, etc)

References

{: .-one-column}