I am trying to get some divss to expand to fill the screen, but I am struggling. I have broken down the issue on this jsfiddle.

What I really want to know is why does the div, with its 100% min-height, not expand to that height (or at all) when its parent has the same attribute and does expand?

<body>
    <div>
        stuff
    </div>
</body>

body {
    min-height: 100%;
    background: red;
}
div {
    min-height: 100%;
    background: grey;
}
link|improve this question

76% accept rate
1  
because you can't really use 100% height on a static element. Changing the position attribute from static to absolute will give you 100% height. jsfiddle.net/qggFz – Joseph Marikle Oct 24 '11 at 18:57
1  
this is the right answer, you should submit answers as answers, so we can choose them as such. :D – Mild Fuzz Oct 24 '11 at 19:29
feedback

5 Answers

up vote 1 down vote accepted

because you can't really use 100% height on a static element. Changing the position attribute from static to absolute will give you 100% height. demo

posted as answer per the request of the the PO.

link|improve this answer
feedback

You need to also set the height of the html so that 100% refers to the viewport height instead of the document height (demo):

html,body {
    height: 100%;
    background: red;
    padding: 0;
}
div {
    height: 100%;
    background: grey;
}
link|improve this answer
I can see it worked in jsfiddle, but didn't when implemented with the rest of my site. Hmmmm.... – Mild Fuzz Oct 24 '11 at 20:03
@MildFuzz Can you post a link to your website? – phihag Oct 24 '11 at 20:04
It's not live currently (and for good reason!). Also, I have fixed it using absolute positioning, which is fine for my requirements (in fact, now I think about it, essential!!) – Mild Fuzz Oct 24 '11 at 20:06
@MildFuzz Well, I'm afraid I can't really help you then. Have you tried simplifying the code as much as possible, and checked that the CSS properties are what you expect (with the developer tools of your browser)? – phihag Oct 24 '11 at 20:10
Like I said, it's working now, so I am not going to go into it any further. I have given you an upvote for your efforts, but I want to give the commenter who led me down the right path the chance to create a question so I can tick it. Thanks :D – Mild Fuzz Oct 24 '11 at 20:12
show 4 more comments
feedback

The issue is covered in the CSS 2.1 spec:

<percentage>

Specifies a percentage height. The percentage is calculated with respect to the height of the generated box's containing block. If the height of the containing block is not specified explicitly (i.e., it depends on content height), and this element is not absolutely positioned, the value computes to 'auto'. A percentage height on the root element is relative to the initial containing block. Note: For absolutely positioned elements whose containing block is based on a block-level element, the percentage is calculated with respect to the height of the padding box of that element. This is a change from CSS1, where the percentage was always calculated with respect to the content box of the parent element.

So, to clarify, a percentage height will reference the height of its containing block (unless it is position: absolute or position: fixed). If that containing block does not have a specified height, then the percentage will refer to auto, and it won't really do much.

position: absolute changes the referenced containing block to the nearest positioned (absolute, relative, or fixed) element.

position: fixed changes the referenced containing block to the viewport.

So, if you specify a height on your containing block, specify a position other than static on your containing block, or don't mind using the viewport as your containing block, then you can use percentage heights effectively.

Please see my demonstration at jsFiddle

link|improve this answer
+2 .... someone else +1 so my +1 really looks like a +2 – rlemon Oct 24 '11 at 20:56
awesome, Ryan. Thanks for the explanation :) +1 – Joseph Marikle Oct 24 '11 at 20:57
feedback

Percentage heights in CSS don't make a lot of sense to me. I would argue that it doesn't work the way it should, but CSS enthusiasts would insist that it does.

This article discusses both the issue and solution in detail:

http://matthewjamestaylor.com/blog/equal-height-columns-cross-browser-css-no-hacks

This might help too:

<style> 
    #outer {position:absolute; height:auto; width:200px; border: 1px solid red; } 
    #inner {position:absolute; height:100%; width:20px; border:1px solid black; } 
</style> 

<div id="outer"> 
    <div id="inner"></div> 
    text 
</div> 

See here for more details on the above:
How to make a floated div 100% height of its parent?

link|improve this answer
Umm, maybe I'm misunderstanding your post, but how is it related to the original question at all? He has just one column, and no floated divs. And percentage heights make a lot of sense if the percentage is relative to the viewport. – phihag Oct 24 '11 at 19:03
It's not meant to be specific to floating divs, but rather displaying a div at 100% height of a container. In this case, the document body would be the container. – James Johnson Oct 24 '11 at 19:07
feedback

There are two issues, you'll want to specify the height of the html as well, as in:

html, body {
    min-height: 100%;
}

Also there appears to be an issue in IE where min-height doesn't do the trick for the div but specifying height on the div does the trick. As such:

html, body {
    min-height: 100%;
    background: red;
}
div {
    height: 100%;
    background: grey;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.