如何设置所有svg的公共背景?
<svg>
<g id="dsfdf">
-----------
</g>
<g id="dsfgfdgdf">
-----------
</g>
</svg>
如何设置G标签的通用背景。请任何一个帮助
答案 0 :(得分:0)
通过在svg元素本身中指定填充,您始终可以在包含元素中指定另一种颜色,例如样本中第一个位置的红色圆圈。
<svg fill="green" id="svg1" xmlns="http://www.w3.org/2000/svg" style="width: 3.5in; height: 1in">
<circle id="circle1" r="30" cx="100" cy="34" style="fill: red; stroke: blue; stroke-width: 2"/>
<circle id="circle2" r="30" cx="200" cy="34"/>
<circle id="circle3" r="30" cx="300" cy="34"/>
</svg>