footer bar like facebook - css
Posted
by Jean
on Stack Overflow
See other posts from Stack Overflow
or by Jean
Published on 2010-04-15T06:45:38Z
Indexed on
2010/04/15
6:53 UTC
Read the original article
Hit count: 290
css
Hello,
I want to create a footer like facebook, that sticks at the bottom of the page, irrespective of the scroll. <div id="footer"></div>
and here is the css style
#footer{
position:absolute;
left:0px;
margin-bottom:0px;
vertical-align:bottom;
bottom:0px;
width:100%;
height:25px;
background-color:#dfd5d7;
overflow:hidden;
}
It comes fine, when I resize the browser window it does not stick to the bottom but a about 50 pixels up.
Any solutions.
Thanks Jean
© Stack Overflow or respective owner