I have three cards in upper row. I know that bootstrap cols have col-gap named gutter. but it is not working here. if I put gap-class
it is showing like this. if not, it is showing together without any space between cards. I checked by putting g gx and gy but not working.
why is this not working for me?
bootstrap code:
<div class="row gap-2 d-md-flex justify-content-center align-items-center">
<div
class="col-lg-4 col-md-4 col-sm-12 mb-sm-3 text-center solution-card solution-card-color1"
>
<img src="./assets/icons/Fast.png" alt="" />
<h5>Standard Delivery</h5>
<p>
Our standard delivery service is affordable and reliable, ideal for non-urgent packages needing timely delivery.
</p>
</div>
<div
class="col-lg-4 col-md-4 col-sm-12 mb-sm-3 text-center solution-card solution-card-color2"
>
<img src="./assets/icons/Express delivery.png" alt="" />
<h5>Express Delivery</h5>
<p>
When time is of the essence, our express delivery ensures your package arrives quickly and securely.
</p>
</div>
<div
class="col-lg-4 col-md-4 col-sm-12 mb-sm-3 text-center solution-card solution-card-color3"
>
<img src="./assets/icons/Cargo ship.png" alt="" />
<h5>Overnight Shipping</h5>
<p>
Ensure next-morning delivery with our overnight shipping service, providing speed and reliability for urgent packages.
</p>
</div>
</div>