我在表格中的文字如下:
<td style="white-space: nowrap">Some value:Another Value; Person-1:Person2</td>
我遇到的问题是此Some value:Another Value; Person-1:Person2
在列中显示为一行。我怎么能在;
上打破它?所以它仍然在同一行/列中,但列中有2行?
答案 0 :(得分:4)
列表项标签怎么样?
我认为你应该去做。
答案 1 :(得分:1)
使用<br />
创建显式换行符:
<td style="white-space: nowrap">Some value:Another Value;<br />Person-1:Person2</td>
答案 2 :(得分:-1)
这应该作为解决方案
<td>
<span style="white-space: nowrap">Some value:Another Value;</span>
<span style="word-break:break-all;">Person-1:Person2</span>
</td>