我有以下页面(死链接:)http://www.workingstorage.com/Sample.htm,它有一个页脚,我不能让它坐在页面底部。
http://www.workingstorage.com/Sample.htm
我希望页脚
CSS是继承的,让我感到困惑。我似乎无法正确更改它以在内容上设置最小高度或使页脚进入底部。
一个简单的方法是制作100%你的页面的body,用min-heightof100%也可以。如果页脚的高度没有改变,这可以正常工作。
100%
min-height
给页脚一个负边距顶部:
footer { clear: both; position: relative; height: 200px; margin-top: -200px; }