Skip to content

Instantly share code, notes, and snippets.

@tonmanna
Last active October 14, 2016 13:21
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 tonmanna/79011aa84342a4d0d40833808f947e79 to your computer and use it in GitHub Desktop.
Save tonmanna/79011aa84342a4d0d40833808f947e79 to your computer and use it in GitHub Desktop.
Grayscale CSS
img {
-moz-filter: grayscale(100%) !important; /* Chrome, Safari, Opera */
-o-filter: grayscale(100%) !important; /* Chrome, Safari, Opera */
-webkit-filter: grayscale(100%) !important; /* Chrome, Safari, Opera */
filter: grayscale(100%) !important;
}
body{
-moz-filter: grayscale(100%) !important;
-o-filter: grayscale(100%) !important;
-webkit-filter: grayscale(100%) !important;
filter: gray !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment