私のウェブサイトのレイアウトにこの問題があり、基本的にそれを続けることができず、すべてが破壊されています.
HTMLコードは次のとおりです。
<table cellpadding="0" cellspacing="0" width="446" height="362">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" colspan="2" height="110">
<p align="center">Banner</td>
</tr>
<tr>
<td valign="top" height="95">I want this cell to have a fixed height</td>
<td valign="top" rowspan="3" width="305">
<p align="center">Text goes here - if the text is too long, I want the
stretching cell to vary in height, not the other 2.</td>
</tr>
<tr>
<td valign="top" height="68">I want this cell to have a fixed height</td>
</tr>
<tr>
<td height="89" width="141" valign="top">Stretching/Flexible cell - I
want this one to vary in height if the text on the right cell is too
long</td>
</tr>
</table>
ご覧のとおり、「テキスト セル」の高さよりも大きいテキストを書くと、右側の列のすべてのセルが伸びてしまい、最後のセルだけが伸びてしまいます。手伝って頂けますか?