gpt4 book ai didi

html - td 中的多行

转载 作者:行者123 更新时间:2023-12-04 12:25:08 27 4
gpt4 key购买 nike

专卖店 <td>包含具有多行的表。一个商店可以有多个
存储(行)。

参见示例:https://jsfiddle.net/ak3wtkak/1/

Stores 和 Quantity ( <th> ) 列的宽度对于第二个表上的多行应该相同。如何解决这个问题或什么是替代方法?

enter image description here

<table border="1" width="100%">
<thead>
<tr>
<th style="width:300px">Product</th>
<th>Barcode</th>
<th>Stores</th>
<th class="middle">Quantity</th>
</tr>
</thead>

<tbody>
<tr>
<td>
Item 1
</td>
<td>12345</td>
<td colspan="3">
<table border="1" width="100%">
<tbody>
<tr>
<td>Store Name 1</td>
<td class="middle">4</td>
</tr>
<tr>
<td>Store Name 2</td>
<td class="middle">4</td>
</tr>
<tr>
<td>Store Name 3</td>
<td class="middle">4</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>

最佳答案

您必须使用 rowspan。
使用 rowspan 为 3 制作前 2 行。

<table border="1" width="100%">
<thead>
<tr>
<th style="width:300px">Product</th>
<th>Barcode</th>
<th>Stores</th>
<th class="middle">Quantity</th>
</tr>
</thead>

<tbody>
<tr>
<td rowspan="3">Item 1</td>
<td rowspan="3">12345</td>
<td>Store Name 1</td>
<td>4</td>
</tr>
<tr>
<td>Store Name 2</td>
<td>4</td>
</tr>
<tr>
<td>Store Name 3</td>
<td>4</td>
</tr>
</tbody>
</table>

关于html - td 中的多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42949132/

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