【发布时间】:2018-10-13 02:30:08
【问题描述】:
我想通过三个部分来显示我的网站:页眉、页面和页脚。现在我可以修复我的页眉和页脚,但是页眉屏蔽了页面的一部分并且页面不会放下我的页脚(我的页面的某些内容显示在我的页脚后面)
我的模板代码:
<div class="fixed-header">
<...>
</div>
<div class="page">
<...>
</div>
<div class="fixed-footer">
<...>
</div>
我的 CSS 是:
.fixed-header {
position: fixed;
top: 0;
left: 0;
z-index: 2;
width: 100% !important;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: white;
text-align: center;
}
有人知道如何解决这个问题吗?
【问题讨论】: