Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PNG 图像,我在我的 HTML 中使用它作为<i>元素的背景图像。我需要在 SVG 中使用这个图标。放入<i>内部<foreignObject>渲染图标,但会导致许多其他问题。
<i>
<foreignObject>
有没有办法在不使用 HTML 标签的情况下获得 SVG 内部的图标效果?
SVG 有一个<image>标签,与 HTML 中的标签非常相似:
<image>
<image xlink:href="firefox.jpg" x="0" y="0" height="50px" width="50px"></image>