Skip to content

Instantly share code, notes, and snippets.

@tushar-borole
Created November 6, 2015 14:09
Show Gist options
  • Save tushar-borole/802d09aeb4fb22ef7af2 to your computer and use it in GitHub Desktop.
Save tushar-borole/802d09aeb4fb22ef7af2 to your computer and use it in GitHub Desktop.
Cross-browser Filter Blur CSS
filter: blur(5px); /* Someday, sigh ... */
-webkit-filter: blur(5px); /* Prefixed CSS3 blur filters */
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
/* filter: url(#blur); Firefox needs SVG */
filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='10'); /* IE lte 9 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment