我看过这里和各种教程,但不能达到我需要的效果。
因此,如果页面内容低于 600 像素,我希望将页脚固定在该高度的容器下方。
但是如果内容将容器高度增加到超过 600 像素,那么页脚应该被容器向下推到页面下方。
我试过使用 min-height 来利用,我的 html 看起来像这样
<body>
<div id="shell">
<div id="container">
Content
</div>
<div id="footer">Footer</div>
</div>
</body>
我不会费心发布 CSS,因为它只是没有接近。