gpt4 book ai didi

html - 带有宽底列的 Bootstrap html 表格

转载 作者:行者123 更新时间:2023-11-28 05:38:45 27 4
gpt4 key购买 nike

我需要做这样的表格(在图片上)。

但是做bootstrap table很重要,所以你在图片上看到的只能有3个表格行,不能有6个,因为我要用style

table class="table table-striped table-hover"

这可能吗?

enter image description here

最佳答案

colspanrowspan 属性应该可以解决问题。

试试这个代码:

<div class="table-responsive" style='width:50%'>
<table class="table table-striped table-hover">
<tr>
<td rowspan="3">Name</td>
<td>Sex</td>
<td>Age</td>
</tr>
<tr>
<td colspan="2">Junmar Jose</td>
</tr>
<tr>
<td colspan="2">Weslie Andrea Lavita</td>
</tr>
<tr>
<td rowspan="3">Name</td>
<td>Sex</td>
<td>Age</td>
</tr>
<tr>
<td colspan="2">Junmar Jose</td>
</tr>
<tr>
<td colspan="2">Weslie Andrea Lavita</td>
</tr>
</table>
</div>

这是输出的屏幕截图:

enter image description here

这只是一个虚拟数据,用于显示列和行是如何分开的。

希望对您有所帮助!祝你好运!

关于html - 带有宽底列的 Bootstrap html 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38037170/

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