Is there any way we can fix the footer to the bottom of the window even at the time of vertical scroll. I have gone through some examples, but those never work with the vertical scroll.
A:
I found this interesting article that may help you do it, I believe it's well explained, there's even an example.
Soufiane Hassou
2009-11-18 13:06:22
A:
Here is your css
html, body {height:100%;padding:0;margin:0;}
#footer {position:absolute;bottom:0;left:0;width:100%;background-color:#f00;}
#scrollingbody {overflow:auto;height:100%;}
Here is your html
<div id="scrollingbody">content goes here</div>
<div id="footer">here is footer</div>
Zoidberg
2009-11-18 13:09:20
position: absolute; will not supported in IE 6 browsers
RSK
2009-11-18 13:23:31
Your saying the CSS attribute position:absolute is not supported in IE6? Having actually used it in IE 6, I can say for sure that it does because I just tested it!
Zoidberg
2009-11-18 13:27:05