SVG:矩形内的文本
我想在 SVG rect
中显示一些文本。是否可以?
我尝试过
<svg xmlns="http://www.w3.org/2000/svg">
<g>
<rect x="0" y="0" width="100" height="100" fill="red">
<text x="0" y="10" font-family="Verdana" font-size="55" fill="blue"> Hello </text>
</rect>
</g>
</svg>
但它不起作用。
I want to display some text inside SVG rect
. Is it possible?
I tried
<svg xmlns="http://www.w3.org/2000/svg">
<g>
<rect x="0" y="0" width="100" height="100" fill="red">
<text x="0" y="10" font-family="Verdana" font-size="55" fill="blue"> Hello </text>
</rect>
</g>
</svg>
But it does not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是不可能的。如果您想在
元素内显示文本,则应将它们放在一个组中,其中
元素位于<; 后面。 rect>
元素(因此它出现在顶部)。This is not possible. If you want to display text inside a
<rect>
element you should put them both in a group with the<text>
element coming after the<rect>
element ( so it appears on top ).以编程方式使用 D3:
Programmatically using D3:
您可以使用 foreignobject 进行更多控制并放置丰富的 HTML矩形或圆形上的内容
You can use foreignobject for more control and placing rich HTML content over rect or circle
使用基本 Javascript 以编程方式在矩形上显示文本
Programmatically display text over rect using basic Javascript