jscroll改变身高?

时间:2012-02-14 15:59:50

标签: height scrollbar footer document-body

我决定在即将推出的网站上使用jscroll,但这是我遇到的问题:

我制作了一个相当粘的页脚,它总是停留在内容的末尾,除非内容不足以填满浏览器窗口。在这种情况下,它只是停留在底部。 目前通过以下CSS实现(如here所述):

html, body{
    height: 100%;
}

#wrapper1{
    min-height: 100%;
        width: 1250px;

}   

#content{
    overflow:auto;    
    padding: 0 0 30 0;
}

#footer {
    height:30px;
    width: 1250px;
    margin-top: -30px;
}

HTML结构是这样的:

<html>
<body>
    <div id="wrapper1">
        <div id="content"> ... </div>
    </div>
    <div id="footer"></div>
</body>
</html>

只要我通过class="scroll-pane"将jscroll应用到正文以便更换浏览器滚动条,当没有足够的内容填充浏览器窗口时,页脚就不会停留在页面的底部

似乎height:100%规则已更改为auto。我怎么能阻止这个?

0 个答案:

没有答案