I\'m trying to make a website with no vertical scrolling for a page, but i need that one of the DIVs i have to expand vertically to the bottom of the page (at most), and tha
Try this:
CSS:
#content {
margin: 0 auto;
border: 1px solid red;
width:800px;
position:absolute;
bottom:0px;
top:0px;
overflow:auto
}
HTML:
...content goes here...
If you don't like absolute positioning in this case, just can play with making a parent and child div to this one, both with position:relative
.
EDIT: Below should work (I just put the css inline for the moment):