我想把一张桌子放在一张桌子里面,让它跨越整个东西高度的 100%,如果这有意义的话。
<table width="800" border="2">
<tr>
<td width="66%">
box 1
</td>
<td width="10" rowspan="2" />
<td rowspan="2" height="100%" valign="top">
<table width="100%" height="100%" bgcolor="yellow">
<tr>
<td>
box 2
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
box 3 <br />
</td>
</tr>
</table>
基本上,我希望那个“黄色”表从父表的顶部到底部。我无法将其设置为固定高度,因为“Box 1”和“Box 3”的高度是动态的,基于其中的任何内容。
这可能吗?