4
<div style='width: 240px; height:530px; overflow:scroll;'>
<table>
bla.. bla..
</table>
</div>

亲爱的,我想自动设置这个 div 的高度,但是当我把它改成 height:auto; 表中的数据不能滚动。

有人有建议吗?

谢谢你。

4

3 回答 3

3
<div style='width: 240px; min-height:530px; overflow:scroll;'>
<table>
bla.. bla..
</table>
</div>
于 2012-04-25T04:28:12.923 回答
1

您可以使用 set min-heightmax-height,因此如果超过 max-height 将显示滚动

于 2012-04-25T04:22:08.330 回答
1
<div style='width: 240px; height:530px; overflow-y: auto;'>

<table>
bla.. bla..

</table>

</div>

我们可以使用其他选项溢出:auto; 如果我们想要滚动条 X 和 Y

于 2015-09-30T13:52:00.423 回答