div不会一直水平扩展

时间:2016-08-20 05:35:27

标签: javascript html css

为什么我的div的左右两侧有空格?

enter image description here

render() {
    return (
        <div className="container intro-body">
            <div className="row">
                <h2 className="intro-name center-block">TEXT</h2>
            </div>
        </div>
    )
}

在我的css

.intro-body {
    height: 500px;
    background-color: #3BC5C3;
}

我尝试将body设置为margin: 0padding: 0,认为它与Bootstrap的默认值有关,但它不起作用。我也没有容器,为什么它仍然有填充?

1 个答案:

答案 0 :(得分:6)

问题是“容器”类 - Bootstrap也应用了这种样式 - 使用“container-fluid”来获得整个宽度。

{{1}}