Click here to Skip to main content
15,889,931 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
It is required to have shadow effect on various elements of svg like path, rect, etc.
I have tried this using filters that already given in svg , but that is not supported in all browser.
So i want it to be done using css, as i have tried this but its not woking

HTML
<html>
<head>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
 <defs>
     <style type="text/css"><![CDATA[
       rect {
           fill: red;
           stroke: blue;
           box-shadow: 6px 4px 10px 10px #888888;
           stroke-width: 3
       }
     </style>
  </defs>
  <rect x="40" y="40" rx="25" ry="50" width="150" height="100"/>
</svg>
</body>
</html>


Any suggestions will be realy appreciable,
Thanks in advance...:)
Posted

1 solution

According to a thread I just read at stackOverflow (http://stackoverflow.com/questions/6088409/svg-drop-shadow-using-css3[^]) You can't do this with a box-shadow.

Looks like the (unavoidable) way to go is (a) filters or (b) non-vector images for those misbehaving browsers.

I'm still covering the whole svg and css idea, though from the little I've looked at, I'm yet to recal a css property that works for both html and svg. Take for instance the padding and margin attributes. Fine for html, no effect (chrome 19) for svg. Or take fill and stroke. Fine for svg, no effect in html.

No doubt(?), there are some properties that work for both. So far I'm tending towards the view that the syntax and use is similar for html and svg css, while the remainder of the ins and outs aren't.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900