vue項目中,使用element-ui的布局,仍然出現footer不固定頁面底部的情況,網上找到的一個管用的
方法是:footer高度固定+絕對定位
<html><head></head><body><div class="header">header</div><div class="main">main content</div><div class="footer">footer</div></body> </html>
<style > .header{background-color: #ffe4c4;} .main{padding-bottom:100px;background-color: #bdb76b;}/* main的padding-bottom值要等于或大于footer的height值 */ .footer{position:absolute;bottom:0;width:100%;height:100px;background-color: #ffc0cb;} </style>
?
http://www.cnblogs.com/pinganzi/p/6383487.html