How to have an empty col-md-* in bootstrap?
Use offsets. You only need to define the first offset as the second col will float next to the first. <link href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css” rel=”stylesheet”/> <div class=”container”> <div class=”row”> <div style=”background:#f99″ class=”col-xs-4 col-xs-offset-1″>Cols 2-5</div> <div style=”background:#9f9″ class=”col-xs-6″>Cols 6-11</div> </div> </div> Note: I’m using the xs column size so it works in the snippet frame. Note, for Bootstrap … Read more