Skip to content

Instantly share code, notes, and snippets.

@leogono
Created April 14, 2015 18:25
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 leogono/a8ba24d1e055d000146e to your computer and use it in GitHub Desktop.
Save leogono/a8ba24d1e055d000146e to your computer and use it in GitHub Desktop.
css grayscale filter
.img-greyscale {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment