daniel
daniel

Reputation: 35703

Breakout container in bootstrap

<div class="container">
   <div class="jumbotron"></div>
</div>

How can I make the jumbotron full page width although it is inside the container?

Upvotes: 0

Views: 922

Answers (1)

dippas
dippas

Reputation: 60563

use container-fluid instead

.jumbotron {
  border: 1px red solid
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="container-fluid">
  <div class="jumbotron"></div>
</div>

Upvotes: 3

Related Questions