开发者

adjustment of footer in website

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;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜