gpt4 book ai didi

html - 如何使用 rowspan 排列表 td

转载 作者:太空宇宙 更新时间:2023-11-04 12:00:18 25 4
gpt4 key购买 nike

我必须如下图所示排列表格单元格,我使用的是 Bootstrap ,我已经使用 colspan 对其进行了调整。但它不像图像中那样工作。

enter image description here

我摆弄了here

<table class="table table-bordered table-responsive">
<thead></thead>
<tfoot></tfoot>
<tbody>
<tr>
<td rowspan="4">a</td>
<td rowspan="2" colspan="2">aaa</td>
</tr>
<tr>
<td>asas</td>
<td>asas</td>
</tr>
<tr>
<td>asas</td>
<td>asas</td>

</tr>
<tr>
<td>asas</td>
<td>asas</td>

</tr>
</tbody>

如何获得如图所示的表格。

最佳答案

我使用 this生成表格:

<table border="1" width="500">
<tr>
<td rowspan="3">1</td>
<td colspan="2">2</td>
</tr>
<tr>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td rowspan="4">7</td>
<td>8</td>
<td>9</td>
</tr>
<tr>
<td>10</td>
<td>11</td>
</tr>
<tr>
<td>12</td>
<td>13</td>
</tr>
<tr>
<td>14</td>
<td>15</td>
</tr>
</table>

关于html - 如何使用 rowspan 排列表 td,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29861560/

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