Skip to content

Instantly share code, notes, and snippets.

@andrewwheal
Created March 25, 2014 17:57
Show Gist options
  • Save andrewwheal/9767441 to your computer and use it in GitHub Desktop.
Save andrewwheal/9767441 to your computer and use it in GitHub Desktop.
Greyscale
* {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: url(grayscale.svg); /* Firefox 4+ */
filter: gray; /* IE 6-9 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment