我连续有3列
我需要在商品的正确描述中间使用此边框。每个包的净数量将延伸到平行列(标记和包数)边界高度
答案 0 :(得分:0)
答案 1 :(得分:0)
你必须使用像这样的结构:
<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 的属性
答案 2 :(得分:0)
首先将height:100%
上的样式<td>
放在包含<table>
<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">
下
{{1}}
答案 3 :(得分:0)