Skip to content

Instantly share code, notes, and snippets.

@SimonLlewellyn
Created May 2, 2017 00:30
Show Gist options
  • Save SimonLlewellyn/28cf2dceff47a7f797378241c6a5215a to your computer and use it in GitHub Desktop.
Save SimonLlewellyn/28cf2dceff47a7f797378241c6a5215a to your computer and use it in GitHub Desktop.
Hover image remove greyscale - classy af
.imgclass img{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: grayscale(100%);
}
.imgclass img:hover{
filter: grayscale(0%);
-webkit-filter: grayscale(0%);
-moz-filter: grayscale(0%);
filter: grayscale(0%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment