我连续有 3 列
我需要在正确描述商品和每个包裹的净数量中间的这个边界延伸到平行列(标记和包裹数量)边界高度
你必须使用这样的结构:
<table>
<tr>
<td>Marks</td>
<td>Description</td>
<td>Quantity</td>
</tr>
<tr>
<td>Lorem...</td>
<td>Lorem...</td>
<td>Sit...</td>
</tr>
<tr>
<td>Name and Address</td>
<td colspan='2'>Signature and date</td>
</tr>
</table>
查看第三行第二个单元格的属性colspan
首先将 styleheight:100%
放在<td>
包含<table>
as
<td width="63%" rowspan="2" valign="top"
style="border-right:1px solid black; border-top:1px solid black; border-bottom:1px solid black;font-size:18px;height:100%">
然后,把样式height:inherit
放在<table>
下面<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0"
style="height:inherit">