Skip to content

Instantly share code, notes, and snippets.

@don1138
Created June 16, 2016 00:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save don1138/a994077129dad2be8d9fab8ef2898864 to your computer and use it in GitHub Desktop.
Save don1138/a994077129dad2be8d9fab8ef2898864 to your computer and use it in GitHub Desktop.
body {
/* The Browser makes its best guess with its own rendering engine */
/* results will vary based on the browser */
text-rendering: auto;
/* The Browser chooses page speed over font calculations and legibility */
text-rendering: optimizeSpeed;
/* The Browser chooses legibility over font calculations and page speed */
text-rendering: optimizeLegibility;
/* The Browser chooses exact font calculations over page speed and legibility */
text-rendering: geometricPrecision;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment