I run a blog site that utilizes bootstrap for creating and posting content on an index page.
Given the varying thumbnail sizes, there may be differences in length unless a standard image size is adopted.
Here's how it would appear with a standard size: https://i.sstatic.net/vE97h.png
And here's what happens when one thumbnail is taller than the other: https://i.sstatic.net/ia2O0.png
I wish to align the blog post at the bottom left corner with the ones at the top left corner.
Below is the HTML code I implemented:
<section>
<div class="container">
<div class="col-md-8">
<div class="col-md-6">
<div class="thumbnail">
<img src="img/thumbnailbig.png" alt="...">
<div class="caption">
<h3>Thumbnail label</h3>
<h4>Written by LCBradley3k</h4>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<p><a href="show.html" class="btn btn-primary btn-block" role="button">Read More</a></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="thumbnail">
<img src="img/thumbnailbig.png" alt="...">
<div class="caption">
<h3>Thumbnail label</h3>
<h4>Written by LCBradley3k</h4>
<p>Lorem Ipsum is simply dummy text o</p>
<p><a href="show.html" class="btn btn-primary btn-block" role="button">Read More</a></p>
</div>
</div>
</div>
<!-- Additional col-md-6 divs here -->
</div>
<div class="col-md-4">
<div class="list-group">
<a href="#" class="list-group-item active"><span class="badge">14</span>
Map Building
</a>
<a href="#" class="list-group-item"><span class="badge">14</span>Crafting</a>
<a href="#" class="list-group-item"><span class="badge">28</span>Servers</a>
<a href="#" class="list-group-item"><span class="badge">10</span>3d Modeling</a>
<a href="#" class="list-group-item"><span class="badge">2</span>Clothing</a>
</div>
</div>
</div>
I understand that rows are typically used in bootstrap, but even after removing them, the layout remains unchanged. How can I ensure that the blog posts stay close together without gaps?