Skip to content

Instantly share code, notes, and snippets.

@tableless
Created May 13, 2013 21:32
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save tableless/5571702 to your computer and use it in GitHub Desktop.
Save tableless/5571702 to your computer and use it in GitHub Desktop.
Esse código deixa o texto um pouco mais legível e bem acabado nos browsers, melhorando a leitura e a visualização de letras.
body {
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
font-smoothing: antialiased;
-moz-text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
-ms-text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
-webkit-text-stroke: 1px transparent;
-moz-text-stroke: 1px transparent;
-ms-text-stroke: 1px transparent;
text-stroke: 1px transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment