I have the following CSS code in a SCSS file:
.blur{ -webkit-filter: blur(3px); -moz-filter: blur(3px); -ms-filter: blur(3px); -o-filter: blu
Remove the space between progid: and DXImageTransform.Microsoft.Blur(PixelRadius = '3');
So, this should work:
filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius = '3');
:)