3

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

Ranjith M
  • 217
  • 1
  • 2
  • 11
  • Does this answer your question? https://stackoverflow.com/questions/25065896/d3-multi-line-tooltip-for-svg-element – user_1330 Mar 10 '21 at 10:44

1 Answers1

4

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>
  
Robert Longson
  • 118,664
  • 26
  • 252
  • 242