https://i.stack.imgur.com/ZELOE.jpg
is there anyway to achieve the responsive grid layout above using bootstrap?
i not sure whether this is the correct way to do it?
<div class="container-fluid">
<div class="row">
<div class="col-md-6"><img src="http://s27.postimg.org/twfuw219f/256x256.jpg"></div>
<div class="col-md-6 col-sm-3"><img src="http://s8.postimg.org/w0dxtotv9/256x120.jpg"></div>
<div class="col-md-6 col-sm-3"><img src="http://s8.postimg.org/w0dxtotv9/256x120.jpg"></div>
</div>
</div>
Yes, it seems that it's the right way to proceed: I modified your JSFiddle to give you an example (there)
You maybe need to manage the height of each column but the example there explains that very well
(I'm not bootstrap expert, I prefer Foundation)