我有一个HTML 表格
JSFiddle 中提到了所需的详细信息。
这在 Firefox 上运行良好,但在 Chrome 和 IE 上却不行!他们怎么了?为什么他们在具有固定高度的最后一行中扩展单元格,而不是第二行,这是第一列中唯一具有未确定高度的单元格。
这是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>