前端之家收集整理的这篇文章主要介绍了
HTML – 如何让我的页脚对齐到底部?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是CSS的新手,并且已经查找了很多
方法,但无法让页脚与
底部对齐.有帮助吗?谢谢.
.footer {
position: bottom;
bottom: -10px;
height: 30px;
width: 100%;
background-color: #171717;
color: white;
}
将位置更改为固定.
.footer {
position:fixed;
bottom:0px;
height:30px;
width:100%;
background-color:#171717;
color:white;
}
原文链接:https://www.f2er.com/html/224110.html