My grid layout of My Bootstrap 3 is as follows:
![](https://fooobar.com//img/f1cc75e04988eca9bc243581d4e6c7dc.png)
However, I do not need the space between the 1st div (yellow) and the third div (red).
Here is my code:
<div class='row'> <div class="col-xs-12 col-sm-6" style='background-color:yellow;height:100px'>1st div</div> <div class="col-xs-12 col-sm-6" style='background-color:blue;height:200px'>2nd div</div> <div class="col-xs-12 col-sm-6" style='background-color:red;height:100px'>3rd div</div> </div>
Any ideas please?
UPDATE:
I think I found a solution ..
<div class='row'> <div class="col-xs-12 col-sm-6" style='background-color:yellow;height:200px'>1st Div</div> <div class="col-xs-12 col-sm-6" style='float:right;background-color:blue;height:600px'>2nd Div</div><br/><div class="clearfix visible-xs"></div> <div class="col-xs-12 col-sm-6" style='background-color:red;height:2000px'>3rd Div</div>
source share