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