3

我一直在花费数小时试图解决这个问题,但没有任何结果。

我想要的真的很简单(理论上)。我想要一个全屏网页,其页眉始终位于顶部,页脚始终位于底部。内容是动态的。如果它超出页面,它应该增长,将页脚向下推。我想要水平居中的内容中有一个 980 像素宽的 div。我想给那个 div 一个与背景颜色不同的颜色。如果内容只有一行文本,我仍然希望 div (背景颜色)成为页脚和页眉之间 100% 的空间。我做了一个丰富多彩的例子:

在此处输入图像描述

我到目前为止的代码:

<html>
<head>
<style>
#container {
    height: 100%;
    width: 100%;
    background: green;
    position: absolute;
}
#header, #footer {
    height: 100px;
    width: 100%;
    background: red;
}
#body {
    height: 100%;
    width: 100%;
    background: blue;
}
#content {
    width: 980px;
    background: yellow;
}

</style>
<head>

<body>
<div id="container">
    <div id="header"></div>
    <div id="body">
    <div id="content">
        content
    </div>
    </div>
    <div id="footer"></div>
</div>
</body>
</html>

这段代码远非正常。首先,如果内容超出页面,它不能将页脚保留在页面底部。其次,我不知道如何包含 980px 居中的 div。

4

3 回答 3

1

要使内容居中,请使用margin: 0 auto;. 这会将顶部和底部的边距设置为 0,并自动调整左右边距。您最有可能问的问题必须涉及 JavaScript。您将始终有一个固定的页脚,或者将页脚放在内容的底部。

你问的不是很实用。如果你有很多内容,你的页脚无论如何都会被下推。当页面上的内容很少时,听起来您希望将页脚放在底部。

我已经编写了一些代码来帮助您入门。JavaScript提供您想要的效果。取消注释CSS高度或在div中添加大量内容,页脚将被下推。

<html>
<head>
    <style>
        body, #body, #header, #footer { width: 100%;margin: 0; padding: 0; }
        #header { height: 100px; background: #7eff02; }
        #footer { height: 100px; background: #ff5c01; }
        #content { width: 980px; background: #fcff00; margin: 0 auto;
            /*height: 3000px;*/
        }
    </style>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
    <script>

        $(document).ready(function () {
            var headerHeight = $("#header").height();
            var footerHeight = $("#footer").height();

            var resizeTimer;
            $(window).resize(function () {
                clearTimeout(resizeTimer);
                resizeTimer = setTimeout(onWindowResize(), 100);
            });

            onWindowResize();

            function onWindowResize() {
                if ($("#content").height() < (window.innerHeight - headerHeight - footerHeight)) {
                    $("#content").css("height", (window.innerHeight - headerHeight - footerHeight));
                    $("#footer").css({ "position": "fixed", "bottom": "0" });
                }
                else {
                    $("#content").css("height", "");
                    $("#footer").css({ "position": "", "bottom": "" });
                }
            }
        });
    </script>
    <head>

        <body>
            <div id="container">
                <div id="header"></div>
                <div id="body">
                    <div id="content">
                        CONTENT
                    </div>
                </div>
                <div id="footer"></div>
            </div>
        </body>
</html>
于 2013-11-02T23:15:04.420 回答
0

尝试这个:

body {padding:100px 0;}
#header, #footer {position:fixed;width:100%;height:100px;}
#header {top:0;}
#footer {bottom:0;}
#container {width:980px;margin:0 auto;}

但是,当您的页眉或页脚内容超过设置的高度时,您将遇到其他问题。

于 2013-11-02T23:15:23.203 回答
0

我也有这个解决方案:http: //jsfiddle.net/AZE4K/

body {
    padding:0;
    margin:0;    
}

#header, #footer {
    position: fixed;
    width:100%;    
}

#header {
    left : 0;
    top : 0;
    background-color:red;
    height:100px;
}

#footer {   
    left : 0;
    bottom : 0;
    background-color:green;
    height:50px;
}

#content {
    background-color : #111111;
    color:#DDDDDD;
    width:95%;
    height : 1500px;
    margin:auto;
    margin-top : 100px;
    margin-bottom: 50px;
}
<div id="header"></div>
<div id="content">
    <h1>Some text</h1>
</div>
<div id="footer"></div>

于 2013-11-02T23:19:50.957 回答