Last active
June 15, 2017 20:22
-
-
Save pattyok/2d4588de8e81bc08bb69ad48be6feeba to your computer and use it in GitHub Desktop.
Use this when you have to use an image with text to keep it from being fuzzy.
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
image-rendering: -moz-crisp-edges; /* Firefox */ | |
image-rendering: -o-crisp-edges; /* Opera */ | |
image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */ | |
image-rendering: crisp-edges; | |
-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment