<div style='width: 240px; height:530px; overflow:scroll;'>
<table>
bla.. bla..
</table>
</div>
亲爱的,我想自动设置这个 div 的高度,但是当我把它改成 height:auto; 表中的数据不能滚动。
有人有建议吗?
谢谢你。
<div style='width: 240px; height:530px; overflow:scroll;'>
<table>
bla.. bla..
</table>
</div>
亲爱的,我想自动设置这个 div 的高度,但是当我把它改成 height:auto; 表中的数据不能滚动。
有人有建议吗?
谢谢你。
<div style='width: 240px; min-height:530px; overflow:scroll;'>
<table>
bla.. bla..
</table>
</div>
您可以使用 set min-height和max-height,因此如果超过 max-height 将显示滚动
<div style='width: 240px; height:530px; overflow-y: auto;'>
<table>
bla.. bla..
</table>
</div>
我们可以使用其他选项溢出:auto; 如果我们想要滚动条 X 和 Y