Bootstrap 引导页脚未粘在页面底部

vyu0f0g1  于 2023-01-22  发布在  Bootstrap
关注(0)|答案(3)|浏览(159)

我目前正在处理一些设计和前端问题,我不是一个定位和其他类似元素的前端Maven。所以现在我已经在我的<div class="container"></div>中构建了一些设计,基本上问题是我的页脚在最后一个元素附近突出。现在在中间。我尝试使用<br>,但这不是我想要的...我怎么才能设置它在页面的底部?谢谢!
我的代码:

<footer class="page-footer font-small bg-dark pt-5">

  <!-- Footer Elements -->
  <div class="container">
    <!-- Social buttons -->
    <ul class="list-unstyled list-inline text-center">
      <li class="list-inline-item">
        <a class="btn-floating btn-fb mx-1" href="https://www.facebook.com/UAB-Interkodas-1882309422025359/">
          <img alt="fb" width="30" src="{% static '/main/svgs/facebook.svg' %}">
        </a>
      </li>
      <li class="list-inline-item">
        <a class="btn-floating btn-tw mx-1">
          <img alt="linkedin" width="30" src="{% static '/main/svgs/linkedin.svg' %}">
        </a>
      </li>
      <li class="list-inline-item">
        <a class="btn-floating btn-gplus mx-1">
          <img alt="google_plus" width="30" src="{% static '/main/svgs/google-plus.svg' %}">
        </a>
      </li>
      <li class="list-inline-item">
        <a class="btn-floating btn-li mx-1">
          <img alt="google_maps" width="30" src="{% static '/main/svgs/google-maps.svg' %}">
        </a>
      </li>
    </ul>
    <!-- Social buttons -->

  </div>
  <!-- Footer Elements -->

  <!-- Copyright -->
  <div class="footer-copyright text-center text-light py-3">© 2020 Copyright: All rights reserved.
  </div>
  <!-- Copyright -->

</footer>
<!-- Footer -->

照片在这里:

krcsximq

krcsximq1#

不要在页脚中使用fixed-bottom类,可以尝试这样做,你可能需要调整一些值,而不是使用160px。

html {
  position: relative;
  min-height: 100%;
  padding-bottom:160px;
}
body {
  margin-bottom: 160px;
}
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 160px;
}
k3fezbri

k3fezbri2#

尝试添加fixed-bottom类:

<footer class="page-footer fixed-bottom font-small bg-dark pt-5">

注意:这将使页脚粘在浏览器窗口的底部,无论你有多少内容。所以当用户上下滚动时,他们总是会在屏幕上看到页脚。

rqmkfv5c

rqmkfv5c3#

您还需要更改<html><body>

<!doctype html>
<html lang="en" class="h-100">
    <head>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">

    </head>
    <body class="d-flex flex-column h-100">
        <footer class="footer mt-auto py-3 bg-primary">
        </footer>
      </body>
 </html>

相关问题