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>
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>
use
instead of <br>
<span title="First line. Second line.">
<a href="URL">
<img src="URL" alt="download file"></a></span>
working demo http://jsfiddle.net/L6xsso3t/5/