添加包含HTML气泡信息的新行

时间:2017-07-03 08:13:11

标签: html infobubble

我通过在不同的地方添加气泡信息来改进我的网络应用程序。

我有以下示例:

<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

谢谢

1 个答案:

答案 0 :(得分:1)

要获得此结果,您可以使用div代替span,因为它们具有display: block;样式,与span的不同。