I am currently working on a page layout that includes a grid system with columns col-md-8
and col-md-4
. My goal is to have two image thumbnails in the col-md-4
section appear side by side on one line, and then move to the next line for the next set of two images. The HTML structure I am using is as follows:
<div class="row">
<div class="col-md-8">
<!-- some text here -->
</div>
<div>
<div class="col-md-4">
<div class="tool">
<img src="image.jpg" style="width:100px; height:75px;">
</div>
</div>
</div>
</div>
To see an example of what I'm trying to achieve, you can check out this JSFIDDLE link, where I aim to display four small images to the right of a larger image with a 2x2 arrangement.