我有一个大桌子,我想应用最大高度,但是我很难做到这一点,因为最左边的列设置为固定到位(使用绝对定位)。
当我给它的容器div一个最大高度时,绝对定位的div溢出并且看起来很糟糕。 HTML看起来大致像这样
<div style="max-height: 100px">
<table>
<tr>
<td class="fixed">blah</td>
<td class="not_fixed">blah!</td>
</tr>
</table>
</div>
这是一个更清楚地展示我的问题的例子: