Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;

I saw some remarks on creating shadow using filter effects. Is there an example of using css alone. Below is a working code where the cusor style is correctly applied, but no shadow effect. Please help me to get the shadow effect with least bit of code.

========= Code ==============

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE HTML><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head> 
<style type="text/css" media="screen">  
    svg .shadow { cursor:crosshair; 
            -moz-box-shadow: -5px -5px 5px #888;
            -webkit-box-shadow: -5px -5px 5px #888;
            box-shadow: -5px -5px 5px #888; }   
</style>
</head>
<body>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="full"  viewBox="0 0 120 70">  
        <rect class="shadow" x="10" y="10" width="100" height="50" fill="#c66" />
</svg>
</body>
</html>
share|improve this question

4 Answers

up vote 36 down vote accepted

Here's an example of applying dropshadow to some svg using the 'filter' property. If you want to control the opacity of the dropshadow have a look at this example. The slope attribute controls how much opacity to give to the dropshadow.

Relevant bits from the example:

<filter id="dropshadow" height="130%">
  <feGaussianBlur in="SourceAlpha" stdDeviation="3"/> <!-- stdDeviation is how much to blur -->
  <feOffset dx="2" dy="2" result="offsetblur"/> <!-- how much to offset -->
  <feMerge> 
    <feMergeNode/> <!-- this contains the offset blurred image -->
    <feMergeNode in="SourceGraphic"/> <!-- this contains the element that the filter is applied to -->
  </feMerge>
</filter>
<circle r="10" style="filter:url(#dropshadow)"/>

Box-shadow is defined to work on CSS boxes (read: rectangles), while svg is a bit more expressive than just rectangles. Read the SVG Primer to learn a bit more about what you can do with SVG filters.

share|improve this answer
thanks Erik.. I saw a good article at Opera dev.opera.com/articles/view/svg-evolution-3-applying-polish/… , which led me to similar sol .. thanks again – bsr May 23 '11 at 16:28
Is there a way of controlling the opacity of the dropshadow? – Hugh Guiney Mar 20 '12 at 21:55
2  
@HughGuiney: yes, of course. Here's an example of one way of doing that, xn--dahlstrm-t4a.net/svg/filters/…. Just vary the slope attribute to tweak how much opacity you want. – Erik Dahlström Mar 21 '12 at 9:05
Note that Internet Explorer and Safari do not support SVG filters yet: w3schools.com/svg/svg_feoffset.asp – Lorenzo Polidori Jul 3 '12 at 7:59
1  
@LorenzoPolidori IE10 and Safari 5.2 both support SVG filters. – Erik Dahlström Jul 3 '12 at 8:04
show 2 more comments

Another approach could be the new CSS filter property.

Sadly it's currently only supported by webkit browsers, but a spec draft is being made by the w3.

Edit: You can use this polyfill that will support FF, IE6-9.

You would use it like so:

.shadow {
    -webkit-filter: drop-shadow( -5px -5px 5px #000 );
            filter: drop-shadow( -5px -5px 5px #000 ); /* Same syntax as box-shadow */
}

And your html would be:

<img src="my-svg-graphic.svg" class="shadow">

<!-- Or -->

<svg ... >
    <rect class="shadow" x="10" y="10" width="100" height="50" fill="#c66" />
</svg>

This approach differs from the box-shadow effect in that it accounts for opacity and does not apply the drop shadow effect to the box but rather to the corners of the svg element itself.

You can read more about css filters on html5rocks.

share|improve this answer
Perfect, thank you for this. – clayzermk1 Feb 9 at 0:41
2  
This appears to work for images, or for the whole svg, but for selections inside the svg. the fiddle – heneryville Apr 8 at 21:25

I'm not aware of a CSS-only solution.

As you mentioned, filters are the canonical approach to creating drop shadow effects in SVG. The SVG specification includes an example of this: http://www.w3.org/TR/SVG/filters.html#AnExample

share|improve this answer
-webkit-filter: drop-shadow() is the way to go for sure. See the answer by @hitautodestruct. – clayzermk1 Feb 9 at 0:42

So, as was mentioned in the buried comments of the accepted answer by Lorenzo Polidori, the easist option that works for me in Chrome (and I'm sure other Webkit browsers) is:

-webkit-svg-shadow: 0 0 7px #53BE12;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.