CSS定位页脚和标题标记之间的距离

时间:2016-07-26 18:38:40

标签: html css position footer

即使我的内容较少,如何让我的页脚始终位于底部? 减少两个标题标签之间的距离?
这里是html和css https://jsbin.com/guwugaloci/edit?html,css,output的链接
img https://s31.postimg.org/hzkef0257/image.jpg
问题显示在图像和页脚中。

2 个答案:

答案 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;
&#13;
&#13;