Skip to content

Instantly share code, notes, and snippets.

@rintoug
Created March 25, 2017 15:51
Show Gist options
  • Save rintoug/8848351852909dbbbd5e137cfdccf485 to your computer and use it in GitHub Desktop.
Save rintoug/8848351852909dbbbd5e137cfdccf485 to your computer and use it in GitHub Desktop.
Cross-Browser Image Grayscale with CSS
.your_image {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: url(filters.svg#grayscale); /* 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