My Bootstrap setup looks like this:
<div class="container">
<div class="row">
<div class="col-12 col-lg-3">
<div class="card mb-3 cardtrans">
// All the content for the card goes here.
</div>
</div>
</div>
</div>
I have a PHP loop to display multiple cards.
Currently, I have 4 cards aligned in a row using the code above. How can I adjust it so that there are 5 cards per row without adding extra CSS? Do I need to apply different classes?