How to display HTML "title" attribute in multiple lines in Firefox?
You can enter
. In other words:
<div title="Line 1 Line 2">Secret</div>
As stated in How can I use a carriage return in a HTML tooltip? you can just do it like this:
<div title="Line 1
Line 2">Secret</div>
Though it is said that it doesn't work with Firefox.