Hello, I'm new here at stack overflow. :-)
How can I create a div that automatically change it's height to get all the space filled?
I've tried with
height:"auto"
but doesn't work... :(
For example:
<div style="height:300px">
<div style="height:50px">...</div>
<div>The height of this div varies from page to page...</div>
<div style="height:???">SPROING!!</div>
<div style="height:50px">...</div>
</div>
EDITED the example to match better my needings.
Thanks.