I just want that horizontal div (about 50 pixels tall) that span across the entire bottom of the page always. How?
views:
68answers:
2
A:
take a look at position:fixed; I've used it to do this before, but you'll run into a cross browser bug with IE. I ended up using a CSS _expression() hack so that it worked in IE6/7.
j4y
2010-03-05 20:30:31
+3
A:
Use the position: fixed
feature in your CSS.
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 50px;
}
However that does not work with IE6; check this link for a workaround.
Etienne
2010-03-05 20:33:46