Is it possible to set drop shadow for an svg element using css3 , something like
box-shadow: -5px -5px 5px #888;
-webkit-box-shadow: -5px -5px 5px #888;
Another way, I used for white shadow (on text): create a clone for shadow:
Note: This require xmlns:xlink="http://www.w3.org/1999/xlink"
at SVG declaration.
Real text value is located in
section, with position and style, but without a fill
definition.
The text is cloned two times: first for shadow and second for the text itself.
More distant shadow with biggest value as blur deviation:
With same requirement: No fill definition at
section!