how can I prevent the main_wrapper from overlapping the footer? the footer has to maintain and position: absolute so that it stays flushed at the bottom of the browser.
html
Code:
#page_contain {
min-height: 100%;
position: relative;
}
#main_wrapper {
width: 950px;
height: 800px;
margin: 0 auto 25px auto;
position: relative;
border: 1px solid #000;
}
#footer {
position:absolute;
bottom: 0;
width: 100%;
height: 60px;
text-align: center;
font-family: Verdana;
}
Code:
<div id="page_contain"></div> <div id="main_wrapper"></div> <div id="footer"> line 1 <br /> line 2 <br /> line 2 <br /> line 2 <br /> line 2 <br /> line 2 <br /> </div>


Comment