I want to create this grid with twitter bootstrap 3.
<div class="container-fluid border">
<div class="row-fluid debug2">
<div class="span2 debug">aa</div>
<div class="span3 debug">bb</div>
<div class="span3 debug" style="float:left; height:300px;"></div>
</div>
<div class="row-fluid">
<div class="span3">xxx</div>
</div>
</div>
2
Answers
You can find guidance on how to upgrade from Bootstrap v2.x to v3.x here.
row-fluid
is nowrow
.span*
is now.col-xs-*
,.col-sm-*
,.col-md-*
or.col-lg-*
. Configure depending on the screen size.Basically it translates to this:
Try this