Skip to content

Instantly share code, notes, and snippets.

@rafaelstz
Last active August 29, 2015 14:18
Show Gist options
  • Select an option

  • Save rafaelstz/de380265a7afb62fe931 to your computer and use it in GitHub Desktop.

Select an option

Save rafaelstz/de380265a7afb62fe931 to your computer and use it in GitHub Desktop.
Text Render CSS - Melhora a renderização de texto.
body,input,textarea,select,button{ 
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  -moz-font-feature-settings:"liga", "kern"
}
.no-fontsmoothing{
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment