Skip to content

Instantly share code, notes, and snippets.

@minhd
Created September 3, 2012 05:15
Show Gist options
  • Save minhd/3606875 to your computer and use it in GitHub Desktop.
Save minhd/3606875 to your computer and use it in GitHub Desktop.
css3 grayscale
.grayscale {
-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