Skip to content

Instantly share code, notes, and snippets.

@benknight
Last active December 27, 2015 21:19
Show Gist options
  • Save benknight/7391416 to your computer and use it in GitHub Desktop.
Save benknight/7391416 to your computer and use it in GitHub Desktop.
Apply kerning pairs
/*
* http://aestheticallyloyal.com/public/optimize-legibility/
* http://adamdscott.com/kerning-for-the-web/
* http://ascott1.github.io/labs.adamdscott/kern/optimize.html
*/
body {
text-rendering: optimizeLegibility !important; /* Deprecated I'm pretty sure */
-webkit-font-feature-settings: "kern" 1; /* The new w3c hotness */
-moz-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment