15

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

在此处输入图像描述

想不出任何方法如何使用纯 css 来实现这一点。任何想法,将不胜感激!

4

3 回答 3

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/

于 2012-07-06T21:30:14.583 回答
6

根据您的页面的设置方式,如果您设置height: 100%;(B) 和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

于 2012-07-06T21:26:47.003 回答
6

我遇到了这个问题,并认为更“现代”的答案会有所帮助。这种布局很容易使用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;
}
于 2018-02-08T13:35:08.243 回答