Set div height auto and scroll can be used

html

Solution

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

Problem

``` <div style='width: 240px; height:530px; overflow:scroll;'> <table> bla.. bla.. </table> </div> ``` Dear all, I want to set this div height automatically, but when I change this into height:auto; the data in table cannot be scroll. Anyone have a suggestions ? Thank you.

Original source