我有以下 HTML:
<body>
<div class="header">header</div>
<div class="content">content</div>
<div class="footer">footer</div>
</body>
和 CSS:
.header {
position: absolute;
top: 0;
width: 100%;
height: 80px;
background-color: #f0f0f0;
}
.content {
margin: 30px;
background-color: #bcbcbc;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 30px;
background-color: #f0f0f0;
}
页眉和页脚看起来如我所愿,但现在我希望内容填充它们之间的所有空间(周围有 30 像素的边距)。我应该添加什么?
谢谢你的帮助。