So here's the scoop.

I have a gradient applied to the background of the body element. Then I have a container (right after body) that has a background .png image applied to it. The gradient always expands to at least 100% window height but the container (#body2) does not.

Any suggestions to why this doesn't work? You can inspect the HTML on my web page here: http://www.savedeth.com/parlours/

link|improve this question

73% accept rate
what browser are you using? – Neal Mar 11 '11 at 19:00
Firefox, safari, chrome. – Dave Mar 11 '11 at 19:02
neat looking design btw – wsanville Mar 11 '11 at 19:12
Not really sure but you may find this question very helpful. – dialer Mar 11 '11 at 19:15
feedback

6 Answers

Specify height: 100% on the html, body and #body2 elements (line 1358).

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

Not tested in IE 6, works in 7 though.

link|improve this answer
2  
Yes, works on the home page, but no on the "media" page, or any page that expands past 100%. – Dave Mar 11 '11 at 19:17
Life saver, thank you! I didn't even think to put 100% on the html element!?! – jstafford Apr 3 at 5:06
feedback

You have your min-height set to 100% which will only be as tall as any elements that fill the space. Express you min-height in terms of pixels. Also, note that IE6- requires it's own set of rules. See http://davidwalsh.name/cross-browser-css-min-height for more details.

link|improve this answer
But I set the HTML and BODY tag min-height to 100%, so that will (and it does, look at the gradient) fill the height of the window. – Dave Mar 11 '11 at 19:32
I think the affect your trying to achieve will be much easier if you place the background image on the HTML and BODY tag. You won't have to specify any heights in this case. – Michael Copeland Mar 11 '11 at 19:52
tried it, no go :/ – Dave Mar 11 '11 at 20:24
feedback
body{
    min-height:700px !important;
    height:auto !important;
    height:800px !important;
    overflow:hidden;
}

overflow: hidden; done the trick for me in Firefox

link|improve this answer
... Except that this disables scrolling :( – martinjlowm Mar 24 at 18:50
feedback
up vote 0 down vote accepted

Screw it. Who doesn't have javascript anyways? Especially for this demographic.

$(document).ready(function(){ if($("body").height()
link|improve this answer
feedback

min-height is only working in IE...used height for other browser.

link|improve this answer
feedback

something is setting the height of your body element to 320px (if you look in chrome's inspect element)

therefore 100% is of 320px. that is why is it only showing on the top of the page with 100% of 320 px height.

you have to set a height for the min-height to work.

so set the height @ 100% in general should work.

link|improve this answer
2  
Not true. You can set HTML and body to min-height: 100% to fill the window. So if you set the next element to min-height:100% it should fill the parent element. Also the 320px is coming from the content, not any css. Chrome is showing you the "displayed" height, not the set height. – Dave Mar 11 '11 at 19:25
look at @micheal copeland. same reason. that is where the 320px is coming from -- biggest element – Neal Mar 11 '11 at 19:51
Maybe the better question is: How does the BODY's background fill the window when it's height is 320px. Do we trust the content, or the background? – Dave Mar 11 '11 at 20:06
well sinse you set min-height to 100% it goes by content – Neal Mar 11 '11 at 20:08
feedback

Your Answer

 
or
required, but never shown

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