is it possible to have multiple lines inside an SVG title tag?
<title> Name: Jon \n Address: NY </title>
I tried to add \n and apply some CSS to break the title text but it's not working
is it possible to have multiple lines inside an SVG title tag?
<title> Name: Jon \n Address: NY </title>
I tried to add \n and apply some CSS to break the title text but it's not working
Actual newlines work, or at least they do in Firefox, Safari and Chrome.
<svg>
<rect width="300" height="150" fill="lime">
<title> Name: Jon
Address: NY </title>
</rect>
</svg>