Looking for some help with a basic HTML structure here. I have a single row divided into two columns, each containing an image of the same size. What I need is to center one image both horizontally and vertically in each column.
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="example.png" />
</div>
<div class="col-md-6">
<img src="example.png" />
</div>
</div>
</div>
Here's a wireframe of how it should look: https://i.sstatic.net/6iwKb.jpg
I've tried using Bootstrap's center classes and custom CSS like flexbox, but the images still end up floating at the top of the page. Any ideas on what I might be missing?