添加带有 HTML 气泡信息的新行
Add new line with HTML bubble info
我正在通过在不同位置添加气泡信息来改进我的 Web 应用程序。
我有以下示例:
<h4><b><span class="glyphicon glyphicon-user"></span> Something
<a><span title="Some advices ..."
class="glyphicon glyphicon-info-sign"></span></a>
</b> </h4>
如何在 title class
中添加换行符以获得 :
Some advices
Some others informations
而不是
Some advices. Some others informations
谢谢
要实现此结果,您可以使用 div
而不是 span
,因为它们具有 display: block;
样式,这与 span 不同。
我正在通过在不同位置添加气泡信息来改进我的 Web 应用程序。
我有以下示例:
<h4><b><span class="glyphicon glyphicon-user"></span> Something
<a><span title="Some advices ..."
class="glyphicon glyphicon-info-sign"></span></a>
</b> </h4>
如何在 title class
中添加换行符以获得 :
Some advices
Some others informations
而不是
Some advices. Some others informations
谢谢
要实现此结果,您可以使用 div
而不是 span
,因为它们具有 display: block;
样式,这与 span 不同。