Could you kindly review this demonstration and advise me on the steps to apply box shadow to an SVG using CSS?
I have already experimented with the following:
.kiwi {
fill: #94d31b;
box-shadow: 10px 10px 5px #888888;
-webkit-filter: drop-shadow( -5px -5px 5px #000 );
filter: drop-shadow( -5px -5px 5px #000 );
-webkit-svg-shadow: 0 0 7px #53BE12;
}
However, none of these methods resulted in any noticeable shadow effect on the SVG image.