Currently, I am working on a mini project that involves recreating a website using Bootstrap 4. I am at a stage where I need to display three images in a grid format with two on the top and one on the bottom. The challenge is to make the top two images even in height, despite the size difference in width, just like the example below:
https://i.sstatic.net/DLTD9.png
As you can see, the top images are perfectly aligned, but the bottom one is not.
Here is how my implementation currently looks:
https://i.sstatic.net/99OaB.png
If you observe, the image on the left is slightly taller than the one on the right.
Below is the code snippet for this section:
<div class="row justify-content-center">
<div class="col-md-4">
<img src="assets/home_seasonal_1.jpg" class="img-fluid" alt="Responsive image" >
</div>
<div class="col-md-6">
<img src="assets/home_seasonal_2.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
<br>
<div class="row justify-content-center">
<div class="col-md-10">
<img src="assets/home_seasonal_3.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
I have experimented with different column configurations, but nothing has yielded the desired result so far. The objective is to achieve this layout without custom CSS and only utilizing Bootstrap.
Below is the version of Bootstrap I am using:
I am seeking some advice on how to achieve the desired layout. Additionally, here are the images: