Add line break within tooltips

html, newline, tooltip

Solution

Just use the entity code `
` for a linebreak in a title attribute.

Problem

How can line breaks be added within a HTML tooltip? I tried using `<br/>` and `\n` within the tooltip as follows: ``` <a href="#" title="Some long text <br/> Second line text \n Third line text">Hover me</a> ``` However, this was useless and I could see the literal text `<br/>` and `\n` within the tooltip. Any suggestions will be helpful.

Original source

Related problems