Greetings,
I've seen various threads on getting page footers to align horozontally at the bottom of a page (and/or browser window, depending on the length of content above it). I have a layout that renders perfectly in Firefox and IE 7, but doesn't work in IE6. I'm guessing it is because IE6 doesn't support the style min-height. Here is the applicable CSS - if someone could how me how to get this work across the major browsers, I'd greatly apprecaite it.
Again, in 1024x768, this CSS renders the "footer" right at the bottom of the browser window in IE7/FF. In IE6, the footer renders as if I had no min-height set in my "main" div.
~Melagan
______
"It's never too late to become what you might have been.
I've seen various threads on getting page footers to align horozontally at the bottom of a page (and/or browser window, depending on the length of content above it). I have a layout that renders perfectly in Firefox and IE 7, but doesn't work in IE6. I'm guessing it is because IE6 doesn't support the style min-height. Here is the applicable CSS - if someone could how me how to get this work across the major browsers, I'd greatly apprecaite it.
Code:
body {
background-color: #FFFDE8;
font-family: Arial;
padding: 5px;
margin: 0;
min-width: 650px;
min-height: 300px;
}
#header {
width: 100%;
min-height: 120px;
margin-bottom: 35px;
}
#main {
width: 100%;
min-height: 375px;
}
#footer {
width: 100%;
clear: both;
}
Again, in 1024x768, this CSS renders the "footer" right at the bottom of the browser window in IE7/FF. In IE6, the footer renders as if I had no min-height set in my "main" div.
~Melagan
______
"It's never too late to become what you might have been.