我正在努力从使用表格进行布局,再到使用div(是的,是的辩论)。我有3个div,标题,内容和页脚。页眉和页脚各50px。如何让页脚div保持在页面底部,内容div填充两者之间的空间?我不想硬编码内容div高度,因为屏幕分辨率可能会改变。
答案 0 :(得分:33)
总结(这来自Traingamer提供的CSS Sticky Footer链接),这是我使用的:
html, body
{
height: 100%;
}
#divHeader
{
height: 100px;
}
#divContent
{
min-height: 100%;
height: auto !important; /*Cause footer to stick to bottom in IE 6*/
height: 100%;
margin: 0 auto -100px; /*Allow for footer height*/
vertical-align:bottom;
}
#divFooter, #divPush
{
height: 100px; /*Push must be same height as Footer */
}
<div id="divContent">
<div id="divHeader">
Header
</div>
Content Text
<div id="divPush"></div>
</div>
<div id="divFooter">
Footer
</div>
答案 1 :(得分:28)
使用flex布局我们可以实现这一点,同时允许自然高度页眉和页脚。页眉和页脚都将分别粘贴到视口的顶部和底部(非常像本机移动应用程序),主内容区域将填充剩余空间,而任何垂直溢出都将在该区域内滚动。
<强> HTML 强>
<body>
<header>
...
</header>
<main>
...
</main>
<footer>
...
</footer>
</body>
<强> CSS 强>
html, body {
margin: 0;
height: 100%;
min-height: 100%;
}
body {
display: flex;
flex-direction: column;
}
header,
footer {
flex: none;
}
main {
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
flex: auto;
}
答案 2 :(得分:8)
要扩展Mitchel Sellers的答案,请将您的内容div高度:100%并给它一个自动余量。
有关完整的解释和示例,请参阅Ryan Fait的CSS Sticky Footer。
由于您知道标题的大小(高度),请将其放在内容div中(或使用边距)。
如果您的内容比窗口更大(更高),绝对位置会给您带来问题。
答案 3 :(得分:1)
使用CSS Grid的方法:
index.html
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="main.css" rel="stylesheet">
</head>
<body>
<main>
<header>Header</header>
<section>Content</section>
<footer>Footer</footer>
</main>
</body>
</html>
main.css
body {
margin: 0;
}
main {
height: 100%;
display: grid;
grid-template-rows: 100px auto 100px;
}
section {
height: 100%;
}
答案 4 :(得分:0)
使用CSS网格代替,几乎所有浏览器都支持它
html{
height: 100%;
}
body{
margin: 0;
padding: 0;
height: 100%;
}
.main-body{
display: grid;
/* let content auto to occupy remaining height and pass value in fit-content with min-height for header and footer */
grid-template-rows: fit-content(8rem) auto fit-content(8rem);
grid-template-areas: "header" "main" "footer";
}
.main-header{
background-color: yellow;
grid-area: header;
}
.main-content{
grid-area: main;
}
.main-footer{
background-color: green;
grid-area: footer;
}
<body class="main-body">
<header class="main-header">
HEADER
</header>
<main class="main-content">
this is content
</main>
<footer class="main-footer">
this is footer
</footer>
</body>
答案 5 :(得分:-4)
如果您尝试最大化内容div的高度,请在CSS添加
中身高:100%;
答案 6 :(得分:-9)
#footer {
clear: both;
}