我使用bulma CSS框架,这里是代码
.footer {
padding: 1rem 1.5rem 1rem;
bottom: 0 !important;
width: 100%;
padding-bottom: 18px;
background-color: whitesmoke;
padding: 3rem 1.5rem 6rem;
}

<footer class="footer">
<div class="container">
<div class="content">
<p><i class="fa fa-hashtag"></i> © 2017 - Project Name</p>
<p class="copyright">Built on the EC9 Platform with <a href="https://laravel.com/" target="_new">Laravel</a>, <a href="https://bulma.io/" target="_new">Bulma</a> and <span class="icon is-small"><i class="fa fa-heart"></i></span>.</p>
</div>
</div>
</footer>
&#13;
答案 0 :(得分:1)
你的css代码是重复的填充。
Ruby
&#13;
.footer {
position: absolute;
bottom: 0;
padding: 1rem;
width: 100%;
background-color: red;
}
&#13;
答案 1 :(得分:0)
你可以使用 poistion:absolute;底部:0; 并将 margin-top 添加到它=它的高度(页脚)。