How to style SVG element?

前端 未结 4 799
半阙折子戏
半阙折子戏 2021-02-02 05:58

I have some SVG elements grouped together in a element. I just want to style that element to show grouping of elements. Like I want

4条回答
  •  攒了一身酷
    2021-02-02 06:40

    The style that you give the "g" element will apply the child elements, not the "g" element itself.

    Add a rectangle element and position around the group you wish to style.

    See: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g

    EDIT: updated wording and added fiddle in comments.

提交回复
热议问题