For example, I want to put some text on top of a rectangle.
<rect x="0" y="0" width="800" height="600" />
<text x="0" y="0">
text text text text text text text text text text text text ... so on
</text>
But the problem is that when the text get longer and longer, it will exceed the original width of the rectangle.
In HTML we can use div to wrap the text, in SVG how can we deal with it?