Hi All,
I m web designer and getting problem in adjustment of footer. I need footer should be fixed at specific height and it will get down if content incresed otherwise it will be at same position please help me ....
Thanks Mayur
Hi All,
I m web designer and getting problem in adjustment of footer. I need footer should be fixed at specific height and it will get down if content incresed otherwise it will be at same position please help me ....
Thanks Mayur
This css snippet should do the trick:
#footer{
position:absolute;
bottom:0px;
}
If you want it to remain at the bottom of the window, try this:
#footer {
position: fixed;
bottom: 0;
width: 500px;
height: 50px;
}
If you want it to be absolutely cross-browser-compatible try this one: cssstickyfooter.com