CSS粘性页脚问题

时间:2011-07-22 00:56:12

标签: css sticky-footer

  

可能重复:
  CSS sticky footer

我正在尝试实现CSS粘性页脚,但由于某种原因,在下一页的页脚和底部之间有一个边距:

http://berrisford.gumpshen.com/

同样的事情发生在这里:

http://berrisford.gumpshen.com/jobs/executive/senior-executive/

任何帮助都会受到赞赏

3 个答案:

答案 0 :(得分:0)

#footer {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999999;
    /* No need for margin here */
}

这不适用于早于7的Internet Explorer。我不确定IE7,IE8或更新版本中的错误。

答案 1 :(得分:0)

margin-top:-60px;显然太过分了。把它降到margin-top:-45px;左右

答案 2 :(得分:0)

请提供padding-bottom:20px容器ID。我认为它会起作用

#container {
width: 940px;
margin: 0 auto;
text-align: left;
padding: 0px 0px 20px 0px;
}