在网站中调整页脚

时间:2010-05-03 05:48:02

标签: html css

我是网页设计师并且在调整页脚时遇到问题。 我需要将页脚固定在特定的高度,如果内容增加它会下降否则它会在同一位置请帮帮我....

由于 MAYUR

3 个答案:

答案 0 :(得分:1)

如果您希望它与浏览器完全兼容,请尝试以下方法:cssstickyfooter.com

答案 1 :(得分:0)

这个css片段应该可以解决问题:

#footer{  
  position:absolute;
  bottom:0px;
}

答案 2 :(得分:0)

如果您希望它保留在窗口的底部,请尝试:

#footer {
    position: fixed;
    bottom: 0;
    width: 500px;
    height: 50px;
}