Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Should there ever be a vertical scrollbar? What happens when the content inside #div2 is taller than the window? – thirtydot Aug 25 '11 at 23:17
use a table set to height=100%. use 2 rows instead of 2 divs – Johnny Craig Aug 25 '11 at 23:19
Don't use tables when there is a simpler solution. – Alexander Rafferty Aug 25 '11 at 23:23

4 Answers

up vote 8 down vote accepted

Use absolute positioning:

<div style="width:100%; position: absolute; top: 0px; height: 50px;" id="div1"></div>
<div style="width:100%; position: absolute; top: 50px; bottom: 0px;" id="div2"></div>
share|improve this answer
the absolute positioning is not strictly necessary on the first one. – Joseph Marikle Aug 25 '11 at 23:28
True, but there is no harm either. – Alexander Rafferty Aug 25 '11 at 23:36

Demo

One way is to set the the div to position:absolute and give it a top of 50px and bottom of 0px;

#div2
{
    position:absolute;
    bottom:0px;
    top:50px
}
share|improve this answer
1  
What if there are other elements with heights which aren't fixed? – Mark Oct 7 '12 at 0:31
1  
@Mark: good point. This solution doesn't work if the preceding elements have a dynamic or unknown height. In this case I think the only solution would be javascript. Like here for example: stackoverflow.com/questions/2023512/… – Jules Nov 27 '12 at 8:22
great - amazing ! – Yugal Jindle Mar 30 at 3:34

With CSS tables, you could wrap a div around the two you have there and use this css/html structure:

<style type="text/css">
.container { display:table; width:100%; height:100%;  }
#div1 { display:table-row; height:50px; background-color:red; }
#div2 { display:table-row; background-color:blue; }
</style>

<div class="container">
    <div id="div1"></div>
    <div id="div2"></div>
</div>

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.

share|improve this answer

Hm not sure if this covers your scenario, but i have created an example on jsfiddle

html:

 <div id="wrapper">
  <div id="one"></div>
  <div id="two"></div>
 </div>

css:

 #one{height: 50px; background:yellow;}
 #two{height:100%;background: red;}
 #wrapper{height:300px;overflow: hidden;}
share|improve this answer
1  
#two has a 50px hidden part, which will be a problem if it's filled with text – Mark Oct 7 '12 at 0:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.