以下是我的粘性页脚的一段 CSS 代码。只有一个问题;每当我在最大化窗口中打开网站时,如果没有太多内容,粘性页脚就可以正常工作。但是,当我在恢复的向下窗口中打开它时,页脚会出现在页面中间。我想做的就是在正文内容之后保留页脚。如果内容没有填满整个屏幕,则页脚应该出现在底部,如果内容超过屏幕,页脚应该出现在内容之后的底部。请让我知道如何修改 CSS 以解决此问题。
.footy {
height: 100px;
position:absolute;
color: #eaeaea;
background-color: #333333;
bottom: 0;
width: 100%;
max-width:100%;
margin-left: -8px;
}
.footin {
padding-top: 45px;
width:900px;
margin:0 auto;
}
<div class="footy">
<div align="left" class="footin"> LLC. 2012 All rights reserved © </div>
</div>