0

How to make a line break within a tool tip? this way doesn't seem to work:

<span title="First line.<br>Second line.">
   <a href="URL">
   <img src="URL" alt="download file"></a></span>
brilliant
  • 2,805
  • 11
  • 39
  • 57

1 Answers1

1

use &#10; instead of <br>

<span title="First line.&#10;Second line.">
<a href="URL">
<img src="URL" alt="download file"></a></span>

working demo http://jsfiddle.net/L6xsso3t/5/

Alien
  • 3,658
  • 1
  • 16
  • 33