我有一个单页 wordpress 网站,其中包含向下滚动页面的菜单项。目前我的页脚位于页面底部,但是我希望它从顶部向下大约 1500 像素,并且当您滚动经过它时,它会粘在浏览器窗口的底部。有人可以给我一些指导吗?
网站目前在这里举行: 网站链接
谢谢,山姆
1) 添加position: fixed;
到#custom_footer
;
2)添加一个margin-bottom
大#csp3_content
。
这对我有用:
#custom_footer {
position: fixed;
bottom: 0;
}
#csp3_content {
margin-bottom: 1000px;
}
您是否尝试过添加样式top:1500px;
和position: fixed
#footer
#footer {
margin: 150px 0 0 0;
width: 960px;
float: left;
top: 1500px;
position: fixed;
color: white;
}