Jumbotron在Twitter Bootstrap中太宽了

时间:2013-10-09 22:30:56

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

请参阅:http://jsfiddle.net/rMYdL/

我的jumbotron似乎超过col-md-10的宽度(意思是,我看到一个水平滚动条)。有什么想法吗?这是相关的片段:

  <div class="col-md-10">
    <div class="jumbotron">
      <div class="container">
        <h1>
          Hello
        </h1>
        <p>
          Please select the type of post you would like to add, edit, or delete.
        </p>
      </div>
    </div>
  </div>

1 个答案:

答案 0 :(得分:5)

您将.container放在.col-*内。您应该使用.row代替。

.container

的第一个.row之前,您还没有任何<body>

<强> FIDDLE