Skip to content

Instantly share code, notes, and snippets.

@meyercc
Created November 2, 2013 17:57
Show Gist options
  • Select an option

  • Save meyercc/7281636 to your computer and use it in GitHub Desktop.

Select an option

Save meyercc/7281636 to your computer and use it in GitHub Desktop.
LESS Mixin that helps browsers correctly render fonts (Chrome, Safari, Firefox [25])
.font-smoothing{
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-smoothing: antialiased;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment