想象一下具有多个<path>
是否可以在SVG的HTML(不是单独的CSS)中设置一个适用于其所有路径的fill="#abc"
(而不是将其添加到每个路径)?
答案 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
属性。