页面底部的附加背景

时间:2013-04-20 20:51:55

标签: html css twitter-bootstrap

我正在使用Bootstrap来创建我的个人网页,并且我尝试向<body>添加渐变背景但是我最终得到了一个无意义的渐变空间。这是图像,我不能包括jsfiddle,因为我有多个CSS文件。

http://jsfiddle.net/eJ3CL/

你在jsfiddle中看不到问题,因为那里没有包含bootstrap,但是这里有截图:

修改 编辑Fiddle以包含引导程序并将内容高度设置为120px,以便其他人可以看到OP想要传达的问题。

when I set container height to 900

when I set container height to 500

造成这种情况的原因是什么?我该如何解决这个问题?

编辑:以下是所有相关代码。

<head>
    <title>Burak Özmen - A Newbie Designer</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
    <link href="css/reset.css" rel="stylesheet" type="text/css">
    <!-- Bootstrap -->
    <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
    <link href="style.css" rel="stylesheet" type="text/css">

</head>
<body>
    <div class="container container-top">
        <div class="page-header">
            <h1>Burak Özmen <small>A Newbie Developer</small></h1>
        </div>
    </div>
    <div class="container container-middle">
        <div class="navbar navbar-static-top navbar-inverse">
            <div class="navbar-inner">
                <ul class="nav">
                    <li><a href="#">Home</a></li>
                    <li><a href="#">About Me</a></li>
                    <li><a href="#" class="pull-right">Link</a></li>
                </ul>
            </div>
        </div>
        <div class="vertical-middle">In development... </div>
    </div>
</body>
</html>

的style.css:

body {
background: rgb(249,252,247); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,252,247,1)), color-stop(100%,rgba(245,249,240,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#f5f9f0',GradientType=0 ); /* IE6-9 */


}

.container-middle {
    height: 300px;
    background: white;

}

2 个答案:

答案 0 :(得分:1)

给身体一个最小高度

body {
  min-height: 400px;
}

答案 1 :(得分:0)

将正文选择器中的规则移至html选择器,并将height:100%;规则添加到html选择器。

html{
background: rgb(249,252,247); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,252,247,1)), color-stop(100%,rgba(245,249,240,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9fcf7', endColorstr='#f5f9f0',GradientType=0 ); /* IE6-9 */
height: 100%;

}

.container-middle {
    height: 300px;
    background: white;

}

适用于Firefox,Chrome和IE9