gpt4 book ai didi

html - 在 Bootstrap 中以垂直对齐顶部显示文本并带有标签

转载 作者:行者123 更新时间:2023-11-28 19:19:22 28 4
gpt4 key购买 nike

在 bootstrap 表格单元格中以垂直对齐方式显示文本,标签文本应换行显示

<td>
<span>16/12/2018 00:00:00</span>
<p class="label label-danger" style="width:100px;line-height:normal;word-wrap:break-word;white-space: normal;">Some long text here like abcd smnopqurst xyz</p>
</td>

enter image description here

最佳答案

label label-danger 在 bootstrap 4 中不可用,请使用 badge badge-danger

td默认vertical-align是一个baseline,所以设置vertical-align top

P 添加类 badge badge-danger mb-0

<td>
<span>16/12/2018 00:00:00</span>
<p class="badge badge-danger mb-0" style="width:100px;line-height:normal;word-wrap:break-word;white-space: normal;">Some long text here like abcd smnopqurst xyz</p>
</td>

https://jsfiddle.net/lalji1051/7j89ze6f/8/

CSS

td{
vertical-align:top;
}
td p.badge{
vertical-align:top;
display:inline-block;
}

关于html - 在 Bootstrap 中以垂直对齐顶部显示文本并带有标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57651906/

28 4 0