CSS blur filter not working in Firefox and IE 10, any alternatives?
I'm using this CSS code for blur effect:
.blur{
-webkit-filter : blur(5px);
-moz-filter : blur(5px);
-o-filter : blur(5px);
-ms-filter : blur(5px);
filter : blur(5px);
opacity : 0.4 ;
}
and the blur is working fine in Chrome, but nothing happens in Firefox or
IE 10.
I also tried this example http://jsbin.com/ulufot/31/edit but for IE 10,
none worked.
I need some advice at this moment, because I'm runing out of ideas...
No comments:
Post a Comment