Last active
February 6, 2022 00:06
-
-
Save tombennet/12ea6362586b635c556a to your computer and use it in GitHub Desktop.
Preserve pixelation when scaling pixel art with CSS - https://builtvisible.com/image-scaling-in-css/
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
@mixin pixelated { | |
-ms-interpolation-mode: nearest-neighbor; // IE 7+ (non-standard property) | |
image-rendering: -webkit-crisp-edges; // Safari 6 - 9 | |
image-rendering: -moz-crisp-edges; // Firefox 3.6 - 64 | |
image-rendering: crisp-edges; // Firefox 65+ | |
image-rendering: pixelated; // Chrome 41+, Edge 76+, Safari 10+ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very useful in the custom CSS field of the
ImagusViewhance browser extension.