1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 22:57:33 +02:00
cheatsheets/css-antialias.md
2017-10-13 01:18:53 +08:00

700 B

title category layout updated intro
CSS antialiasing CSS 2017/sheet 2017-08-26 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}