I have this problem, I have two divs:
<div style="width:100%; height:50px;" id="div1"></div>
<div style="width:100%;" id="div2"></div>
How do I make div2 occupy remaining height of the page?
|
Use absolute positioning:
|
|||||
|
DemoOne way is to set the the div to
|
|||||||||||
|
|
With CSS tables, you could wrap a div around the two you have there and use this css/html structure:
Depends on what browsers support these display types, however. I don't think IE8 and below do. EDIT: Scratch that-- IE8 does support CSS tables. |
||||
|
|
|
Hm not sure if this covers your scenario, but i have created an example on jsfiddle html:
css:
|
|||||
|
#div2is taller than the window? – thirtydot Aug 25 '11 at 23:17