Insert line break (enter) using HTML codes

I'm trying to put an enter / line break(\n, <br />, etc) in a title of an html element. To do this, I went to search for HTML Codes something that was equivalent to &nbsp used to give a "space". I found few references but none that really worked...

I found the &#10 but it doesn't work (source ).

How can I actually enter / break a line in a title element html?

Code:

<input type="button" value="butão" title="tesxto 1 &#160 texto 2"/>

Http://jsfiddle.net/pymgx0ws /

Edit:

In my application I am using devexpress, and I cannot use:

<a title='1ª linha
2ª linha
3ª linha
'>link</a>
 15
Author: CesarMiguel, 2014-09-08

1 answers

jsfiddle

Use &#013; for line break

<a title='1ª linha&#013;2ª linha&#013;3ª linha'>link</a>

output

1ª linha
2ª linha
3ª linha

Source

 17
Author: Papa Charlie, 2017-05-23 12:37:26