Skip to content

Instantly share code, notes, and snippets.

@lawliet89
Created September 26, 2013 23:39
Show Gist options
  • Save lawliet89/6722154 to your computer and use it in GitHub Desktop.
Save lawliet89/6722154 to your computer and use it in GitHub Desktop.
Cross browser greyscale
img {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><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>#grayscale");
filter: gray; /* IE 6-9 */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment