I'm working on ui for a web application. I finished html5/css3 part, the only thing left is a couple of svg elements. The problem is that I have different themes for the application, so I'm not sure how to style those svg elements so they change with the theme. I guess one way would be to make different .svg files for each theme, but is there a way to give an svg element (it can be included in html file, it doesn't have to be an external file) borders, gradient, shadow and so on using only css?

link|improve this question
look here w3.org/TR/SVG/styling.html#SVGStylingProperties styling an svg with css is not the same as styling html with css – philipp Dec 6 '11 at 16:39
I would say it is the same as html with css, the only thing that differs is how/if certain properties apply to svg elements or not. – Erik Dahlström Dec 8 '11 at 12:52
feedback

2 Answers

Try this: SVG and CSS

link|improve this answer
feedback

You can use CSS to change the colors of the SVG element, through the stroke and fill properties. For instance, you can make something like:

rect
{
   fill: blue;
   stroke: black;
}

If you don't want to change, say, all rectangles, you can define classes in you SVG and change their fill and stroke properties as well.

Unfortunately, you can't change borders, gradients and shadows in a SVG image using CSS. At least, not in the same way you would change it in html elements with CSS3. You can do a lot programatically though. For instance, if you have shadow-like filters defined in your SVG image, you can dynamically apply it to any element by changing its filter property in CSS:

filter:url(#filterName);

The link posted by philipp lists all SVG attributes that can be changed through CSS You can always change your SVG programatically, but it's probably not worth the trouble in your case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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