首页 > web前端 > css教程 > 正文

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

Patricia Arquette
发布: 2024-11-17 08:17:03
原创
405 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板