Skip to content

Instantly share code, notes, and snippets.

@videlais
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save videlais/c0112154e0604897cd04 to your computer and use it in GitHub Desktop.
Save videlais/c0112154e0604897cd04 to your computer and use it in GitHub Desktop.
Image-Rendering CSS properties and options
* {
image-rendering:optimizeSpeed; /* Legal fallback */
image-rendering:-moz-crisp-edges; /* Firefox */
image-rendering:-o-crisp-edges; /* Opera */
image-rendering:-webkit-optimize-contrast; /* Chrome (and eventually Safari) */
image-rendering:crisp-edges; /* CSS3 Proposed */
image-rendering: optimize-contrast; /* Possible future browsers. */
-ms-interpolation-mode:bicubic; /* IE8+ */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment