HTML テーブルがあります
。必要な詳細は JSFiddle に記載されています。
これは Firefox ではうまくいきますが、Chrome と IE ではうまくいきません! 彼らの何が問題なのですか?最初の列の高さが決定されていない唯一のセルである2番目の行ではなく、固定された高さを持つ最後の行のセルを展開する理由。
HTMLコードは次のとおりです。
<table style="width: 100%;" dir="rtl" cellpadding="0" cellspacing="0">
<tr>
<td style="height: 100px; width: 176px; background:blue">
this is a fixed size cell
</td>
<td rowspan="3" style="background:gray; height: 360px;">this cell is spanned 3 rows<br /> lots of content may be placed here</td>
</tr>
<tr>
<td style="background:red">this should expand depending on gray region</td>
</tr>
<tr>
<td style="height: 46px; background:blue">this is a fixed size cell</td>
</tr>