Skip to content

Instantly share code, notes, and snippets.

@jpgls
Created August 14, 2014 22:19
Show Gist options
  • Save jpgls/355fc574c683fa0ebe0d to your computer and use it in GitHub Desktop.
Save jpgls/355fc574c683fa0ebe0d to your computer and use it in GitHub Desktop.
Font Smoothing CSS

Font Smoothing CSS Rules

When you have small fonts, or narrow ornaments that don't look right in the browser, try these-moz and -webkit rules for font-smoothing.

.font-smoothing {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment