我尝试了所有方法来删除页脚后的空白,这里是我在 Css 中写的:
#page-container {
position: relative;
min-height: 100vh;
}
#content-wrap {
padding-bottom: 100px; /* Footer height */
}
#footer {
background-color: #3F729B;
bottom: 0;
position: absolute;
height:100px;
width: 100%;
color: black;
text-align:center;
padding: 0 30px;
}
这是在我的页面中:
<div id="page-container">
<div id="content-wrap">
<!-- all other page content -->
<footer id="footer" >
</footer>
</div>
</div>