Bootstrap combining rows (rowspan)

Divs stack vertically by default, so there is no need for special handling of “rows” within a column. div { height:50px; } .short-div { height:25px; } <link href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css” rel=”stylesheet” /> <div class=”container”> <h1>Responsive Bootstrap</h1> <div class=”row”> <div class=”col-lg-5 col-md-5 col-sm-5 col-xs-5″ style=”background-color:red;”>Span 5</div> <div class=”col-lg-3 col-md-3 col-sm-3 col-xs-3″ style=”background-color:blue”>Span 3</div> <div class=”col-lg-2 col-md-2 col-sm-3 col-xs-2″ … Read more