解决方法
我想要的是让页脚处于浏览器视图的底部,只有当内容不够长才能填满浏览器窗口(不粘).
我可以通过使用CSS函数calc()来实现.现在大部分是支持的.你可以使用像:
<div class="container">CONTENT</div> <div class="footer"> </div>
css:
.container { min-height: 70%; min-height: -webkit-calc(100% - 186px); min-height: -moz-calc(100% - 186px); min-height: calc(100% - 186px); }
将186更改为您的页脚的大小.