Skip to content

SVG 拾遗

在SVG中添加html元素

svg
<foreignObject x="10" y="10" width="180" height="180">
  <div xmlns="http://www.w3.org/1999/xhtml" style="color: white;">
    这是一个在SVG中的div。
  </div>
</foreignObject>

Released under the ISC License.