Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 700 Bytes

File metadata and controls

31 lines (25 loc) · 700 Bytes
title CSS antialiasing
category CSS
layout 2017/sheet
updated 2017-08-26
intro 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}