Working on a layout design using Twitter Bootstrap 3. Here's the current progress:
<div class="container">
<div class="row">
<div class="col-xs-3 red">
<h3>Column 1 Content</h3>
<img class="img-responsive" src="http://dummyimage.com/300x400/000/fff">
</div>
<div class="col-xs-3 blue">
<h3>Column 2 Content</h3>
<img class="img-responsive" src="http://dummyimage.com/300x600/000/fff">
</div>
<div class="col-xs-3 green">
<h3>Column 3 Content</h3>
<img class="img-responsive" src="http://dummyimage.com/300x100/000/fff">
</div>
<div class="col-xs-3 yellow">
<h3>Column 4 Content</h3>
<p>This is some dummy content</p>
</div>
</div>
</div>
The goal now is to achieve the following...
- Ensure each column is of the same height
- Add spacing between each column
Attempts have been made with adding margins, but it resulted in pushing items to the next row. Any suggestions for a solution?