这是我的代码,当页面有更多内容时,我们滚动标题移动然后我尝试制作标题fixed
的位置,但然后页脚不会坚持到底部:/
html,body
{
margin: 0px;
height:100%;
min-height: 100%;
top: 0;
width: 100%;
position: absolute;
}
header
{
width: 100%;
background-color: #000000;
height: 8%;
min-height: 8%;
}
#container
{
min-height: 85%;
margin-top: 0.5%;
}
footer
{
bottom: 0;
background-color: #000000;
width: 100%;
height: 6%;
min-height: 6%;
position: relative;
}
答案 0 :(得分:2)
将position:fixed
设置为页脚
header
{
width: 100%;
background-color: #000000;
height: 8%;
min-height: 8%;
z-index:1000;
position:fixed;
/*.........^........*/
top:0;
}
footer{
bottom: 0;
background-color: #000000;
z-index:1000;
width: 100%;
height: 6%;
min-height: 6%;
position:fixed;
/*.........^........*/
}
答案 1 :(得分:1)
footer
{
position: fixed;
z-index: 300;
bottom: 0px;
left: 0px;
background-color: #000000;
width: 100%;
height: 6%;
min-height: 6%;
}
答案 2 :(得分:1)
header
{
width: 100%;
background-color: #000000;
height: 8%;
min-height: 8%;
position: fixed;
top: 0;
}
footer
{
bottom: 0;
background-color: #000000;
width: 100%;
height: 6%;
min-height: 6%;
position: absolute;
color: #FFFFFF;
}
我在这里提到了height: 1000px;
以便你理解......你可以改变它......
答案 3 :(得分:0)
试试这段代码:
<强> DEMO 强>
header
{
width: 100%;
background-color: #000000;
height: 8%;
min-height: 8%;
top: 0;
position: fixed;
}
footer
{
bottom: 0;
background-color: #000000;
width: 100%;
height: 6%;
min-height: 6%;
position: absolute;
}