我设置了一个粘性页脚,并希望主要内容位于其上方。
目前内容在页脚后面运行,我想让它位于div#fullContainer
页脚上方。使红色背景位于页脚上方。
我希望这是有道理的。
<div id="fullContainer" style="background-color:red">
<div id="container">
<div id="content" >Text here</div>
</div>
</div>
<div class="footer" id="container">footer content</div>
.footer {
border-top:3px solid #ff0000;
position: fixed;
left: 0;
right: 0;
bottom: 0;
height: 180px;
}