Struggling with the bootstrap 5 grid? I'm trying to showcase one full image with a col-12 and 600px width, along with three images, each 200px wide with a col-4. The goal is to have one image on top and three beneath it with g-3 spacing between them. I created two separate rows under one container, using img-fluid class for each image to make them full width. However, the three images are not aligning correctly. Please take a look at the issue https://i.sstatic.net/zNkRt.png
Here's the code I'm currently using:
<div class="container text-center pt-5">
<div class="row">
<div class="col-12"><img class="img-fluid pb-2" src="./images/01.jpg" alt=""></div>
</div>
<div class="row g-3">
<div class="col-4"><img class="img-fluid " src="./images/02.jpg" alt=""></div>
<div class="col-4"><img class="img-fluid " src="./images/03.jpg" alt=""></div>
<div class="col-4"><img class="img-fluid " src="./images/04.jpg" alt=""></div>
</div>
</div>
Here's the desired end result https://i.sstatic.net/qlerr.jpg
I've consulted Bootstrap 5 documentation and followed the same structure, but the issue persists. Any help would be greatly appreciated.