Skip to content

Instantly share code, notes, and snippets.

@xhinking
Created August 25, 2013 16:42
Show Gist options
  • Save xhinking/6334885 to your computer and use it in GitHub Desktop.
Save xhinking/6334885 to your computer and use it in GitHub Desktop.
blur effect css
#myDiv:hover #effect {
display:block;
-webkit-filter: blur(20px);
-moz-filter: blur(15px);
-o-filter: blur(15px);
-ms-filter: blur(15px);
filter: blur(15px);
opacity: 0.95;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment