テーブルセル、固定高さ、またはJavascriptを使用せずに、高さが互いに一致する2つの列を持つ方法はありますか?
テーブルの使用
<table>
<tr>
<td style="background:#F00;">
This is a column
</td>
<td style="background:#FF0;">
This is a column<br />
That isn't the same<br />
height at the other<br />
yet the background<br />
still works
</td>
</tr>
</table>
DIV の使用
<div style="float:left;background:#F00" >
This is a column
</div>
<div style="float:left;background:#FF0" >
This is a column<br />
That isn't the same<br />
height at the other<br />
yet the background<br />
still works
</div>
<div style="clear:both;" ></div>
目標は、どちらの側が高いかに関係なく、両方の背景を完全な高さに拡張することです。
両側が正しい高さであることを保証しないため、一方を他方にネストしても機能しません。
残念ながら、プレビューでは動作する HTML が示されていましたが、実際の投稿ではそれが取り除かれていました。これを HTML ファイルに貼り付ければ、私の言いたいことがわかるはずです。