我正在使用模板,因此我只能更改元素的内容(在这里:“我爱SVG!”)或使用CSS。
<svg height="30" width="200">
<text x="0" y="15" fill="red">I love SVG!</text>
</svg>
我想要这样的结果:
<svg height="45" width="200">
<text x="0" y="15" fill="red">I</text>
<text x="0" y="30" fill="red">love</text>
<text x="0" y="45" fill="red">SVG!</text>
</svg>