Created
July 3, 2017 15:42
-
-
Save Farmatique/52443ef360c067a13518bb1596713708 to your computer and use it in GitHub Desktop.
Fuzzy blurry images fix
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
| img[src$=".gif"], img[src$=".png"] { | |
| 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