提问者:小点点

如何在页面底部固定页脚?[副本]


这是我的代码,我想我的页脚是静态的在我的html页面底部,我如何修复它?

<footer class="footer">
  <div>

  </div>

  <div class="footer_container">
    <%= link_to "About Us", '#' %>
    &nbsp;
    &nbsp;
    &nbsp;
    &nbsp;
    &nbsp;
    <%= link_to "Contact Us", '#' %>
  </div>
</footer>

共1个答案

匿名用户

只需编写以下CSS:

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%; // <- this is optional
}

这是参考资料