ASP.NET 的粘性页脚

发布于 2024-12-09 02:34:41 字数 226 浏览 1 评论 0原文

我试图让背景与粘性页脚一起使用,但我遇到了困难。由于某种原因,body 下方的空白区域似乎停止在底部上方的弹性高度处,具体取决于窗口高度。

我看不出任何可能导致此问题的原因,并且非常感谢您的指点。

演示站点位于 http://myfitzeek.lime49.com

I'm trying to get a background working with a sticky footer and I've hit a brick wall. For some reason, the blank space underneath body seems to stop at an elastic height above the bottom depending on the window height.

I can't see anything which could cause this and would really appreciate a pointer.

The demo site is at http://myfitzeek.lime49.com

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

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

发布评论

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

评论(1

叫思念不要吵 2024-12-16 02:34:41

根据您的链接,您只需更改

   html {
       height: 100%;
       margin: 0;
       padding: 0;
   }

    #footer{
        position: absolute;
        ....
    }

    html {
       margin: 0;
       padding: 0;
    }

    #footer {
        position: fixed;
        ....
    }

According to your link, you just change

   html {
       height: 100%;
       margin: 0;
       padding: 0;
   }

    #footer{
        position: absolute;
        ....
    }

to

    html {
       margin: 0;
       padding: 0;
    }

    #footer {
        position: fixed;
        ....
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文