Skip to content

Instantly share code, notes, and snippets.

@monkeymonk
Created December 23, 2014 14:54
Show Gist options
  • Save monkeymonk/0239e54d379d318eaf81 to your computer and use it in GitHub Desktop.
Save monkeymonk/0239e54d379d318eaf81 to your computer and use it in GitHub Desktop.
CSS Blur effect
.blur {
-webkit-filter: blur(4px);
filter: url('data:image/svg+xmlutf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="4" /></filter></svg>#filter');
filter: blur(4px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment