可能重复:
CSS 粘性页脚
我正在尝试实现 CSS 粘性页脚,但由于某种原因,页脚和下一页底部之间有一个边距:
http://berrisford.gumpshen.com/
同样的事情发生在这里:
http://berrisford.gumpshen.com/jobs/executive/senior-executive/
任何帮助将不胜感激
可能重复:
CSS 粘性页脚
我正在尝试实现 CSS 粘性页脚,但由于某种原因,页脚和下一页底部之间有一个边距:
http://berrisford.gumpshen.com/
同样的事情发生在这里:
http://berrisford.gumpshen.com/jobs/executive/senior-executive/
任何帮助将不胜感激
#footer {
position: fixed;
left: 0;
bottom: 0;
right: 0;
z-index: 999999;
/* No need for margin here */
}
这在 7 之前的 Internet Explorer 上不起作用。我不确定 IE7、IE8 或更高版本中的错误。
显然你有margin-top:-60px;
太多了。把它降到margin-top:-45px;
大约
请提供padding-bottom:20px
容器 ID。我认为它会起作用
#container {
width: 940px;
margin: 0 auto;
text-align: left;
padding: 0px 0px 20px 0px;
}