Created
April 13, 2017 15:26
-
-
Save florianboudot/7c2940732b404dad35bd4382319dbf2f to your computer and use it in GitHub Desktop.
CSS transform blurry fix
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
/* translateZ + scale = fix font blurry */ | |
-webkit-font-smoothing: subpixel-antialiased; | |
transform: translate3d(-50%, -50%, 0) scale(2, 2); | |
zoom: 0.5; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment