0

我希望页脚留在页面底部。所以我创建了一个 DIVmin-heigt:100%和一个没有高度设置的 DIV,用于动画 ajax 内容加载:

HTML:

<div class="main">
    <div class="header navi>…&lt;/div>
    <div class="animater">
        <!-- content goes here -->
        <div class="footer">
            <!-- footer stuff goes here -->
        </div>
    </div>
</div>

CSS:

.main {
    min-height:100%;
    margin-left:auto;
    margin-right:auto;
    position:relative;
}
.header {
    // height, width, margin, position
}
.animater {
    // empty
}
.footer {
    bottom:0px;
    position:absolute;
}

当我加载页面并且内容比我的屏幕小得多时,一切都很完美。页脚按预期位于屏幕底部。

我现在正在animater使用 CSS 关键帧制作动画。当 out 动画结束时,我将替换 的内容animater并将其重新动画化。当内容再次小于屏幕时,页脚位于我的animater. 但是当我“手动”重新加载页面时(这样内容就不会被动画化),页脚的位置是正确的。

因此,无论内容的高度如何,我都需要一个位于内容底部的页脚。我不能给动画师最小高度,因为它不在页面顶部。

4

1 回答 1

4

我制作的这个例子显示了让页脚保持下来所需的最小 css。http://jsfiddle.net/meBv3/

的HTML

<div class="wrapper">
<div class="page">
    page here
</div>
<div class="footer">
    Content for  class "footer" Goes Here
</div>
</div>

CSS

/* THIS IS THE MIN STYLE NEEDED TO GET THE FOOTER TO STAY DOWN */

html, body{
height:100%;    /* to keep .footer on bottom */
margin:0;   /* to get rid of scroll bar, because (100% + default margin = scroll) */

}
.wrapper {
min-height: 100%;   /* to keep .footer on bottom */
position: relative; /* must be relative or .footer will cover content */
}
.page {
padding-bottom:2.2em;   /* MUST have padding on the bottom => .footer, or .footer will cover content 8*/

}
.footer {
position: absolute; /* to keep .footer on bottom */
bottom: 0px;    /* to keep .footer on bottom */
height:2em; /* height must be smaller then .page's bottom padding */

}
于 2013-01-21T15:34:02.423 回答