如何让页脚始终位于页面底部?

发布于 2024-12-06 04:31:53 字数 49 浏览 1 评论 0原文

我的页面不包含很多信息,因此页脚显示在页面中间的某个位置。我怎样才能让它永远在底部?

My page doesn't contain a lot of information, so footer is displayed somewhere in the middle of the page. How can I have that always at the bottom?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

谷夏 2024-12-13 04:31:53

jquery 移动方法 -

jquery mobile approach - <div data-role="footer" data-position="fixed">

心意如水 2024-12-13 04:31:53
{
  potition: absolute;
  bottom: 0;
  width: 100%;
  height: some_height;
}
{
  potition: absolute;
  bottom: 0;
  width: 100%;
  height: some_height;
}
╰つ倒转 2024-12-13 04:31:53

这不是固定位置页脚。如果页面内容高于屏幕,页脚将超出屏幕。我认为这样看起来更好。

body 和 .ui-page min-height 和 height 是必要的,以防止页脚在转换过程中上下跳跃。

适用于目前最新的 JQM 版本 1.4.0

body,
.ui-page {
    min-height:100% !important;
    height:auto !important;
}

.ui-content {
    margin-bottom:42px; /* HEIGHT OF YOUR FOOTER */
}

.ui-footer {
    position:absolute !important;
    width:100%;
    bottom:0;
}

This isn't a fixed position footer. The footer will be offscreen if the page content is taller than the screen. I think it looks better this way.

The body and .ui-page min-height and height are necessary to prevent the footer from jumping up and down during transitions.

Works with the latest JQM version as of now, 1.4.0

body,
.ui-page {
    min-height:100% !important;
    height:auto !important;
}

.ui-content {
    margin-bottom:42px; /* HEIGHT OF YOUR FOOTER */
}

.ui-footer {
    position:absolute !important;
    width:100%;
    bottom:0;
}
放肆 2024-12-13 04:31:53
[data-role=page]{height: 100% !important; position:relative !important;}
[data-role=footer]{bottom:0; position:absolute !important; top: auto !important; width:100%;}  
[data-role=page]{height: 100% !important; position:relative !important;}
[data-role=footer]{bottom:0; position:absolute !important; top: auto !important; width:100%;}  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文