根据内容调整页脚

发布于 2024-09-06 19:24:55 字数 994 浏览 7 评论 0原文

我正在使用网站。

目标:
我想根据每个页面的内容移动页脚。

1)如果有更多内容,那么我想将页脚放在内容后面。
2)我想将页脚固定在窗口屏幕的底部,如果没有下图这样的内容

替代文本 http://www.freeimagehosting.net/uploads/e893eac88b.png

我现有的 CSS :

我目前正在使用 min-height #content 中的属性将页脚保持在底部。

#footer_outer{
    width:100%;
    background:#444;
    padding:10px 0 0 0;
    margin-top:50px;
    height: 130px;
}

#footer {
    margin:0 auto;
    width:834px;
    height:auto;
    overflow:hidden;
}

#content {
    padding:5px;
    margin:0 auto;
    width:890px;
    height:auto;
    min-height:450px;
}

body {
    font-family:'Helvetica Neue', helvetica, arial, sans-serif;
    color:#757575;
    font-size:14px;
    padding:0;
    margin:0;
    background:#FAFAFA;
}

请帮助我实现我的目标。预先非常感谢。

问候, 瓦特斯

I am using this site.

Aim :
I want to move my footer based on the content of every page.

1)If there is more content then i want to put my footer after the content.
2)I want to fix the footer to the bottom of the window screen, if there is no content like this in the following picture

alt text http://www.freeimagehosting.net/uploads/e893eac88b.png

My existing CSS :

I am currently using min-height property in #content to keep the footer at the bottom.

#footer_outer{
    width:100%;
    background:#444;
    padding:10px 0 0 0;
    margin-top:50px;
    height: 130px;
}

#footer {
    margin:0 auto;
    width:834px;
    height:auto;
    overflow:hidden;
}

#content {
    padding:5px;
    margin:0 auto;
    width:890px;
    height:auto;
    min-height:450px;
}

body {
    font-family:'Helvetica Neue', helvetica, arial, sans-serif;
    color:#757575;
    font-size:14px;
    padding:0;
    margin:0;
    background:#FAFAFA;
}

Please help me in achieving my aim. Thanks a lot in advance.

regards,
vaths

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

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

发布评论

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

评论(1

月野兔 2024-09-13 19:24:55

1.使用固定位置div

http://www.dailycoding.com/Posts/creating_always_visible_div_using_css.aspx< /a>

将 CSS 更改为

#footer {
    margin:0 auto;
    width:834px;
    height:auto;
    overflow:hidden;
    position: fixed;
    bottom: 0px;
}

2. 如何将页脚保留在页面底部

http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page

1. Use fixed position divs

http://www.dailycoding.com/Posts/creating_always_visible_div_using_css.aspx

Change CSS to

#footer {
    margin:0 auto;
    width:834px;
    height:auto;
    overflow:hidden;
    position: fixed;
    bottom: 0px;
}

2. How to keep footers at the bottom of the page

http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page

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