我正在尝试将页脚保持在页面底部,并希望对此提出任何建议。
我当前的 CSS 在下面
.footer {
position:relative;
display:block;
left:0px;
bottom:0px;
width:100%;
margin-top: 0px;
}
答案 0 :(得分:0)
<style>
footer {
position: absolute;
background: red;
bottom: 0;
width: 100%;
height: 50px;
}
</style>
<body>
<article>Content</article>
<footer>Footer</footer>
</body>