Last active
December 27, 2015 21:19
-
-
Save benknight/7391416 to your computer and use it in GitHub Desktop.
Apply kerning pairs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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