是否可以在没有CSS的情况下将所有填充颜色一起更改?

时间:2017-09-16 07:06:59

标签: svg

想象一下具有多个<path>

的SVG图像

是否可以在SVG的HTML(不是单独的CSS)中设置一个适用于其所有路径的fill="#abc"(而不是将其添加到每个路径)?

1 个答案:

答案 0 :(得分:1)

<svg fill="#88f195" width="400" height="400">
  <rect width="300" height="100" style="stroke-width:3;stroke:rgb(0,0,0)" />
  <circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" />
  <rect x="50" y="120" width="300" height="100" style="stroke-width:3;stroke:rgb(0,0,0)" />
</svg>

您可以设置svg元素的fill属性。