Created
June 5, 2014 00:53
-
-
Save yocontra/f8fce3f9111fb5a4564d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.blur { | |
/* modern stuff */ | |
-webkit-filter: blur(radius); | |
-moz-filter: blur(radius); | |
-o-filter: blur(radius); | |
-ms-filter: blur(radius); | |
filter: blur(radius); | |
/* gecko */ | |
filter: url(blur.svg#blur); | |
/* old IE */ | |
filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=radius)"; | |
-ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=radius)"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment