HTML – 如何让我的页脚对齐到底部?

前端之家收集整理的这篇文章主要介绍了HTML – 如何让我的页脚对齐到底部?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是CSS的新手,并且已经查找了很多方法,但无法让页脚与底部对齐.有帮助吗?谢谢.
  1. .footer {
  2. position: bottom;
  3. bottom: -10px;
  4. height: 30px;
  5. width: 100%;
  6. background-color: #171717;
  7. color: white;
  8. }

解决方法

将位置更改为固定.
  1. .footer {
  2. position:fixed;
  3. bottom:0px;
  4. height:30px;
  5. width:100%;
  6. background-color:#171717;
  7. color:white;
  8. }

猜你在找的HTML相关文章