Skip to content

Instantly share code, notes, and snippets.

@Lammerink
Last active December 16, 2015 17:50
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 Lammerink/5473464 to your computer and use it in GitHub Desktop.
Save Lammerink/5473464 to your computer and use it in GitHub Desktop.
CSS : Turn Images Black and White
@charset "UTF-8";
/* CSS: Turn Images Black and White */
/* for more info go to: http://demosthenes.info/blog/532/Convert-Images-To-Black-And-White-With-CSS */
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment