Issue
Possible Duplicate:
How can I use a carriage return in a HTML tooltip?
I would like to display the "title" attribute tooltip in several lines, so it looks like this:
Line 1
Line 2
<div title="Line 1\nLine 2">Secret</div>
but it didn't work.
Is that possible?
Solution
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.
Answered By - nollfem
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.