作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
今天我一直在尝试设计一个页脚,我一直在尝试通过 CSS 来实现,但无论我如何尝试,它都不会移动到底部。这是我目前拥有的:
#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
background-color: red;
}
<div id="footer">
<p>TEST TEKST</p>
</div>
这是结果:
最佳答案
试试这个
body {
padding: 0;
margin: 0;
min-height: 100vh;
}
#footer {
position: absolute;
bottom: 0;
left: 0;
background: red;
width: 100%;
height: 50px;
}
<body>
<div id="footer"></div>
</body>
关于html - 页脚不会移动到页面底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52422485/
我是一名优秀的程序员,十分优秀!