这个问题已经有了答案:
How can I use a carriage return in a HTML tooltip?
24个答案
我想知道如何在“标题”属性中添加分隔符,我想在“标题”属性中使用分隔符来区分名称。
如何在标题属性中添加分隔符?
我有类似的东西

<p title="this is a description of the some text <br> and further description">Some Text</p>

结果是:

最佳答案

如果在需要换行的地方添加新行,它可以在某些浏览器上使用,但不能全部使用。
例子:

div { background-color: #c3c3c3; display: block; width: 100px; height: 100px; }

<div title="This is a text
    Second line
    Third line!">Contents</div>

J小提琴:
http://jsfiddle.net/g5CGh/

关于html - 在title属性中添加换行符[duplicate],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19981974/

10-12 04:23