Last active
March 28, 2016 16:16
-
-
Save alexburner/b4cfef04b6c22a19e22d to your computer and use it in GitHub Desktop.
Medium typography hacks
This file contains hidden or 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
| html { | |
| -ms-text-size-adjust: 100%; | |
| -webkit-text-size-adjust: 100%; | |
| } | |
| body { | |
| text-rendering: optimizeLegibility; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| -moz-font-feature-settings: "liga" on; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment