Last active
October 11, 2016 10:14
-
-
Save leymannx/717fa77913b867126f8f2b23b2af1155 to your computer and use it in GitHub Desktop.
Ultimate text rendering
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
// https://google.github.io/material-design-icons/ | |
body { | |
/* Support for all WebKit browsers. */ | |
-webkit-font-smoothing: antialiased; | |
/* Support for Safari and Chrome. */ | |
text-rendering: optimizeLegibility; | |
/* Support for Firefox. */ | |
-moz-osx-font-smoothing: grayscale; | |
/* Support for IE. */ | |
font-feature-settings: 'liga'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment