using bootstrap3 grid system I would like 2 x columns with 3 rows.
In column 1 I would have 3 x rows of text inputs(a,b,c) and in column 2 I would like 1 image which would take up the entire 3 rows.
Is there a way of doing this?
example here
http://jsfiddle.net/sLxcf5jd/1/
<div class="row">
<div class="col-sm-2"><div class="well">1</div></div>
<div class="col-sm-2"><div class="well">2<img src="http://placehold.it/100x350"></div></div>
</div>
<div class="row">
<div class="col-sm-2"><div class="well">2</div></div>
</div>
<div class="row">
<div class="col-sm-2"><div class="well">3</div></div>
</div>