我知道这个问题已经被问过很多次了,但我还没有找到真正适合我的解决方案。
我的html...
<body>
<div id="container">
</div>
<div id="footer">
</div>
</body>
我的css....
body, html { min-height:100%;}
#container
width: 980px;
min-height: 100%;
margin: 0 auto;}
footer {
background-color: rgb(90,200,219);
height: 50px;
position: realative;
margin-top: -50px;
width: 100%; }
发生的事情是页脚完全粘在页面底部。但是,当内容很短时,我仍然需要向下滚动才能找到粘在底部的页脚。有人可以告诉我我的代码有什么问题吗?