编辑:所选答案包含指向工作小提琴的链接,我可以在不使用嵌套表的情况下进行创作。
我想在 HTML 中使用如下图所示的布局对表格进行语义编码。不幸的是,我无法在网络上找到类似的东西。
我已经能够通过手动设置单元格宽度来强制外观,但我想确保我生成的代码是有意义的,我认为情况并非如此,因为如果不手动设置宽度,标准渲染看起来更多如下图。
到目前为止,我提出的有问题的代码如下所示:
<table>
<thead>
<tr>
<th scope="col">Type of Loss Dollar</th>
<th scope="col">Reserve Amount</th>
<th scope="col">Paid Amount</th>
<th scope="col">Total This Loss</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3">
<table>
<tbody>
<tr>
<th scope="row">Medical</th>
<td><input type="text" /></td>
<td><input type="text" /></td>
</tr><tr>
<th scope="row">Indemnity</th>
<td><input type="text" /></td>
<td><input type="text" /></td>
</tr><tr>
<th scope="row">Expense</th>
<td><input type="text" /></td>
<td><input type="text" /></td>
</tr>
</tbody>
</table>
</td><td>
TOTAL
</td>
</tr>
</tbody>
</table>