Skip to content

Instantly share code, notes, and snippets.

@flexd
Created September 16, 2011 15:47
Show Gist options
  • Save flexd/1222408 to your computer and use it in GitHub Desktop.
Save flexd/1222408 to your computer and use it in GitHub Desktop.
CSS anti-aliasing in different browsers
# WebKit browsers
body {
-webkit-font-smoothing: antialiased;
}
# Gecko (Firefox) browsers
body {
-moz-font-smoothing: antialiased;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment