In response to blip #133718
yeah, I don't know if it's possible to add an outline to individual SVG bits with just CSS like you can with text and normal elements.
yeah, I don't know if it's possible to add an outline to individual SVG bits with just CSS like you can with text and normal elements.
@dba_afish: y'can just overlay multiple drop shadows in a filter to get some sort of crude outline e.g. filter: drop-shadow(#000 0 1px) drop-shadow(#000 1px 0) drop-shadow(#000 0 -1px) drop-shadow(#000 -1px 0), but you shouldn't want to do that ever.