I'm wondering if I can create multiple "brushes" in a single SVG file and use them thoughout my CSS.

Right now I have a single SVG file that has a gradient stored in the "defs" and a single rectangle that draws it. Then I use this SVG file as a background image in my CSS. It works well but I'd rather not have a million separate SVG files. I'd like to combine like "brushes" together in a single SVG file something like CSS sprites or XAML is capable of.

Is there a way to do this? If so what's the syntax to specify for the CSS background image which SVG element from the svg file to use?

Thanks for any help.

link|improve this question

I've tried doing this by specifying an id for each svg element and then referencing it like /img/image.svg#id, but I haven't had success. – Duopixel Apr 17 '11 at 2:54
Exactly. I've been trying similar things w/ no luck too. Seems like a practical thing to want to do but I fear browsers may not have a way of accessing individual resources in a SVG via CSS. If so it's a pretty big oversight IMO. – user169867 Apr 17 '11 at 9:35
2  
Why can't you just draw the gradients one by one, side by side, in your SVG and then select the correct portion for you backgrounds? – Stephen Chung Apr 26 '11 at 5:52
feedback

1 Answer

In theory yes, that should be possible. It's not yet fully defined in a w3c spec though and the implementations do differ at this stage.

Note that svg itself allows a special fragment syntax, so in theory you should be able to link to different views of the same svg file. That could be used to do CSS/SVG sprites.

Linking directly to the id of a nested svg fragment (or to any other element inside the svg) is something that would need to be further specified.

Assuming that linking with fragments from a CSS background property works, then a possibility if you use XHTML (serving the resulting file as application/xhtml+xml) is to just include the svg resources inline in the main document, eliminating the need for many separate files. This can be done as a pre-publishing buildstep if you wish to keep the svgs separate for editing. Another possibility is to use data uris.

link|improve this answer
Well the problem is that while fragments do work within an SVG file, there does not seem to be a way to refer to them from the CSS background property. Duopixel's syntax seems like it should be correct, but it looks like browsers simply don't support it. – user169867 Apr 21 '11 at 19:58
What I described is not implemented in all browsers, but that is how it should work. It does work in some browsers already, e.g firefox, you can read more about "SVG Stacks" here: simurai.com/post/20251013889/svg-stacks – Erik Dahlström Apr 19 at 8:00
feedback

Your Answer

 
or
required, but never shown

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