页眉和页脚之间的内容为100%

时间:2012-07-06 21:18:10

标签: html css flexbox

让我们假设我有以下布局(见下图)......我在顶部有一个标题(A),页脚(C)总是在底部,容器(B)在中间,应该在页眉和页脚之间留出100%的空间。

enter image description here

无法想到如何使用纯css实现这一目标。任何想法将不胜感激!

3 个答案:

答案 0 :(得分:12)

您的问题几乎描述了标准块级元素(如DIV)的行为方式。中心div将占据两者之间100%的空间,它将根据其内在内容而增长。

那就是说,我假设你想要一个FIXED页脚 - 一个位于浏览器窗口底部的页脚。这是使用多种技术来实现的,其中一种技术使用绝对定位:

<div id="header">Header</div> 
<div id="content">Main Content</div> 
<div id="footer">Footer</div> 

风格:

#header, #footer, #content { position: absolute; left: 0; width: 100%; }
#header, #footer { overflow: hidden; background: #444; height: 100px; }
#header { top: 0; }
#content { top: 100px; bottom: 100px; overflow: auto; background: #CCC; }
#footer { bottom: 0; }​

http://jsfiddle.net/U9wfy/

答案 1 :(得分:4)

根据页面的设置方式,如果为容器元素设置{B}和height: 100%; position: absolute;,则可能会有效。这是一个例子:

<强> HTML:

<div id="container">
    <div id="header"></div>
    <div id="body"></div>
    <div id="footer"></div>
</div>​

<强> CSS:

#container {
    height: 100%;
    width: 100%;
    background: green;
    position: absolute;
}
#header, #footer {
    height: 100px;
    width: 100%;
    background: red;
}
#body {
    height: 100%;
    width: 100%;
    background: blue;
}​

jsFiddle

答案 2 :(得分:2)

我遇到了这个问题,并认为更“现代”的答案会有所帮助。使用 flexbox ..

可轻松实现此布局

https://www.codeply.com/go/1QgRb4uFmj

<header>
</header>
<main></main>
<footer>
</footer>

html, body {
  margin: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

header,
footer {
  flex: none;
  background: #ddd;
}

main {
  overflow-y: scroll;
  flex: auto;
}