gpt4 book ai didi

html - 使用 Bootstrap 的表格单元格中的多行文本

转载 作者:搜寻专家 更新时间:2023-10-31 23:22:30 24 4
gpt4 key购买 nike

我想使用 Bootstrap 将一长段字符串显示到表格单元格中。它包含一些换行符 \r\n .我尝试使用 style="white-space:pre"作为this stackoverflow post建议但这会破坏 Bootstrap 文本换行。我也尝试更改 \r\n<br>但它不起作用。 <br>显示为文本。

这是我的 table 的样子..

<table id="table1" class="table table-bordered">
<tbody>
<tr>
<th class="col-md-2" scope="row">Description</th>
<td id="description">Very long test with \r\n so I want to show this in multiline and also want to wrap the text using bootstrap.</td>
</tr>
</tbody>
</table>

最佳答案

将分页符更改为 HTML 分页符(br 标记)在 jsfiddle 中工作正常。请参阅下面的链接。确保在生成 HTML 时生成的是实际的 < 和 > 符号,而不是 HTML 代码。

https://jsfiddle.net/joedonahue/zpj94p0b/

<table id="table1" class="table table-bordered">
<tbody>
<tr>
<th class="col-md-2" scope="row">Description</th>
<td id="description">Very long test with <br/> so I want to show this in multiline and also want to wrap the text using bootstrap.</td>
</tr>
</tbody>
</table>

关于html - 使用 Bootstrap 的表格单元格中的多行文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38275259/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com