1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2025-06-15 06:37:26 +02:00
cheatsheets/css-antialias.md
Rico Sta. Cruz 511de900ba
Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

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}