我希望我的页脚始终位于页面底部,即使内容很短。我已经检查了这个http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page但不起作用。
我的 HTML:
<body>
<div id="container">
<div id="header"></div>
<div id="content"></div>
</div>
<div id="wrap-footer">
<div id="footer"></div>
</div>
</body>
我的 CSS:
#footer {
height: 320px;
position: absolute;
width: 100%;
bottom: 0;
}
有了这个,当我的内容很短时还可以,但是当我的内容很长时,页脚会进入页面中间并卡在那里。有人有想法吗?提前致谢