即使我的内容较少,如何让我的页脚始终位于底部?
减少两个标题标签之间的距离?
这里是html和css https://jsbin.com/guwugaloci/edit?html,css,output的链接
img https://s31.postimg.org/hzkef0257/image.jpg
问题显示在图像和页脚中。
答案 0 :(得分:0)
尝试绝对定位页脚
.footer{
position: absolute;
bottom: 0;
}
答案 1 :(得分:0)
header{
height:84px;
}
section{
height:100%;
}
footer{
height:84px;
position:absolute;
bottom:0;
}

<header>
Header
</header>
<section>
Content
<footer>
Footer
</footer>
&#13;