引导后,滚动后没有背景

时间:2016-01-20 22:35:34

标签: javascript jquery html css twitter-bootstrap

我正在使用bootstrap:http://ironsummitmedia.github.io/startbootstrap-simple-sidebar/ 我想改变这个白色背景,但是当我生成一些数据和滚动页面时,它仍然是白色的。

enter image description here

我在这个引导程序中只改变了这个:

html, body {
    height: 100%;

}

#wrapper {
    height: 100%;
    width: 100%;
    background: red;

2 个答案:

答案 0 :(得分:1)

你现在能否

body { background-color: red; }

或您可以使用渐变: -

#wrapper { background: red; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(red, yellow); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(red, yellow); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(red, yellow); /* For Firefox 3.6 to 15 */ background: linear-gradient(red, yellow); /* Standard syntax */ height: 100vh; }

答案 1 :(得分:0)

试试这个

#wrapper {
height: 100vh;
width: 100%;
background: red;
}