Skip to content

Instantly share code, notes, and snippets.

@Calamari
Created July 18, 2013 20:51
Show Gist options
  • Save Calamari/6032975 to your computer and use it in GitHub Desktop.
Save Calamari/6032975 to your computer and use it in GitHub Desktop.
Making a CSS3 only blur effect
/**
* Making a CSS3 only blur effect
*/
.blurred {
-webkit-filter: blur(4px);
/* These are not implemented yet: */
-moz-filter: blur(4px);
-ms-filter: blur(4px);
filter: blur(4px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment