在主容器外设置页面的背景颜色

时间:2016-01-09 19:45:28

标签: html css twitter-bootstrap twitter-bootstrap-3

我正在使用Narrow Jumbotron Bootstrap示例,您将如何设置页面周围内容的背景颜色,将主要内容保持在中心白色。更改正文背景颜色会将所有内容更改为该颜色,包括导航栏。

基本上我只想改变双方的颜色,而不是中间的内容。

2 个答案:

答案 0 :(得分:5)

设置background-colorbody div的.container

body {
    background-color: tomato;
}

.container {
    background-color: white;
}

此外,要移除容器顶部和底部的彩色线条,请移除padding的{​​{1}}并将其应用于body

.container

答案 1 :(得分:0)

这应该有用......

body, html {
    background-color: black !important;
}