I have a design where there is a header set at absolute position with a height of 379px. My content is also set at absolute position with top:232px as well. I am successfully getting the content div to stretch to the bottom of the page, however, because of the extra 232px even if the content does not pass the height of the window a vertical scroll bar is added.
I've looked around and have come across this topic posted which pretty much is the issue I'm having. Unfortunately, none of the solutions posted on that page have solved my problem. Here is my CSS code:
#wrapper { position:absolute; top:0; left:50%; width:1000px; height:100%; margin-left:-500px; }
#header { z-index:1; position:absolute; top:0px; background:url(../images/layout/backdrop.png) no-repeat; width:1000px; height:379px; }
#container {
position:relative;
top:232px;
bottom:0;
background-color:#d7d7d7;
width:739px;
height:100%;
min-height:100%;
margin-left:175px;
border:1px solid #000;
border-bottom:0;
border-top-right-radius:20px;
-moz-border-radius-topright:20px;
}
And the HTML Code:
<div id="wrapper">
<div id="header"></div>
<div id="container">
</div>
</div>
Thanks in advanced for any advice provided!
height:auto; overflow:hidden;in#wrapper an #container– Passer By Oct 19 '11 at 11:49#contentdid not produce any results, however, addingoverflow:hiddento#wrapperdid take the scrollbar away. The only problem is, when the content passes max-height it will not scroll... :o – lemonpole Oct 19 '11 at 15:19min-height:-moz-calc()in#containerI was able to achieve the results I wanted but this method is not very cross-browser functional... – lemonpole Oct 19 '11 at 15:50