-1

我设置了一个粘性页脚,并希望主要内容位于其上方。

目前内容在页脚后面运行,我想让它位于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;

}    
4

1 回答 1

0

这应该这样做 - http://jsfiddle.net/Ballcheck/dp6LS/

刚刚添加了以下容器类 -

#fullContainer {
    position: absolute;
    height: auto;
    width: 100%;
    top: 0px;
    left: 0px;
    bottom: 180px;
}
于 2013-07-01T13:02:03.860 回答