Skip to content

Instantly share code, notes, and snippets.

@jacks0n
Created January 14, 2015 03:10
Show Gist options
  • Save jacks0n/1e1818b02f40d73397f3 to your computer and use it in GitHub Desktop.
Save jacks0n/1e1818b02f40d73397f3 to your computer and use it in GitHub Desktop.
Enables font anti-aliasing, nice and crisp text!
body {
/* Crisp text - antialiase */
font-smoothing: antialiased !important;
-moz-osx-font-smoothing: grayscale !important;
-webkit-font-smoothing: antialiased !important;
-moz-font-smoothing: antialiased !important;
/* Kerning */
text-rendering: optimizeLegibility !important;
/* Optional */
-webkit-text-stroke: 1px rgba(0,0,0,0.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment