如何将标题的内容更改为两行

时间:2016-10-19 03:19:23

标签: svg

我知道SVG有一个<title>元素。当用户将鼠标悬停在文本上时,我希望将标题显示为多行。我该怎么做?

enter image description here

<text>
    hoverthis
    <title>one <br/> two<title>
</text>

1 个答案:

答案 0 :(得分:0)

使用回车。

<svg>
  <rect fill="blue" width="100%" height="100%">
    <title>one 
two</title>
</rect>
</svg>