什么是看似微不足道的问题让我头痛不已......
我试图在每条信息之后简单地移动到新的一行。我在'\n'
内使用<br>
尝试了<br>
,<p>
,并在线进行了大量研究但没有成功。
我的代码:
<td>
<button type="button" class="table table-striped table-bordered table-condensed"
data-placement="top"
title= "{{ x.Recipient.Name + x.Recipient.Email_Address + x.Recipient.Job_Title + x.Recipient.Department + x.Recipient.Office }}"
onmouseenter="$(this).tooltip('show')">
{{ x.Recipient.Name }}
</button>
</td>
pop-over运行良好,没有任何问题,但信息被挤压在一起,我希望每个部分在自己的行上分开。在此先感谢您的帮助! :)