drop-shadow css filter not working with safari 9.1, please suggest any possible way to solve this problem.
I have been using a class for the rendered element but the element background is not visible because of filter.
.class{
fill: #7FADC1;
filter: url(#dropShadow);
filter: drop-shadow(0 1px 2px #D5D5D5);
}
I ran into the same problem. I solved it like this, the "moz-document url-prefix" is needed for FireFox. (The trick is ending with the SVG filter option).
You also need to include this in your HTML (or use an URL to reference an external SVG).