【发布时间】:2020-10-28 21:18:53
【问题描述】:
我试图让单行跨越 9 行,但由于某种原因,应该显示在跨越行下方的行出现在跨越行中,而不是在其下方。任何帮助是极大的赞赏!代码如下:
<table>
<thead>
<tr>
<th scope="col"> GDP index </th>
<th scope="col"> Vegas track </th>
<th scope="col"> Boston track </th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"> Number one </th>
<td> 1:32:33 </td>
<td> 2:32:69 </td>
</tr>
<tr>
<th rowspan="9" scope="row"> Number two - ten </th>
<td rowspan="9" colspan="2"> Did not compete </th>
</tr>
<tr>
<th scope="row"> Number eleven </th>
<td> 45:12:02 </td>
<td> 3:04:05 </td>
</tr>
</tbody>
<tfoot>
<tr>
<th> Total time </th>
<td> 10:48:22 </td>
<td> 11:43:44 </td>
</tr>
</tfoot>
</table>
标题为“第 11 号”的行应该出现在上一行的下方,但却出现在上一行。
【问题讨论】:
标签: html