My CSS CODE
footer {
background-color: #242424;
bottom: 0;
clear: both;
color: #727272;
height: 210px;
left: 0;
line-height: 20px;
position: absolute;
width: 100%;
z-index: 1;
}
我的HTML代码
<footer></footer>
这是我的site
你可以看到中间的页脚栏。为什么我使用了正确的CSS?任何帮助,将不胜感激 ?
答案 0 :(得分:1)
使用position: relative
在主体内容下显示页脚,或position: fixed
将页脚粘贴在页面底部。
答案 1 :(得分:1)
使用position:relative而不是position:absolute;
我看到你使用了min-height:2000px; 。请使用它作为你的内容通过这一点
body {
background-color: #FFFFFF;
font-size: 14px;
margin: 0 auto;
min-height: 2000px;
width: 980px;
}
答案 2 :(得分:1)
删除
min-height: 2000px;
来自身体