首页  >  文章  >  web前端  >  如何在 HTML 页面底部创建固定页脚?

如何在 HTML 页面底部创建固定页脚?

Patricia Arquette
Patricia Arquette原创
2024-11-17 08:17:03402浏览

How to Create a Fixed Footer at the Bottom of a Page in HTML?

在页面底部创建固定页脚

在 HTML 中,页脚通常由名为“footer”的 div 类表示。要将此元素固定在页面底部,需要实现某些 CSS 属性。

提供的 CSS 代码将页脚相对顶部值 490px 定位,不适合将页脚固定到页面底部。底部。此外,代码没有指定宽度属性,这导致页脚无法填充页面宽度。

要创建固定页脚,可以使用 CSS 属性的组合。一种常见的方法是利用“粘性页脚”技术。实现方式如下:

/* Sticky Footer by Ryan Fait */

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -142px;
  /* the bottom margin is the negative value of the footer's height */
}

.footer,
.push {
  height: 142px;
  /* .push must be the same height as .footer */
}
<div class='wrapper'>
  body goes here
  <div class='push'></div>
</div>
<div class='footer'>Footer!</div>

通过使用此技术,页脚元素将保持固定在页面底部,即使页面内容调整高度也是如此。

以上是如何在 HTML 页面底部创建固定页脚?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn