I'm looking to set up a row with 5 responsive columns that have equal padding on all sides, but I'm struggling to find the best way to do this using Bootstrap.
Here's my current HTML:
<div class="row five-col-row">
<div class="col col-md-2 mx-2">
<h6>Sources</h6>
<span>{{ allStats.sources }}</span>
</div>
<div class="col col-md-2 mx-2">
<h6>Installs</h6>
<span>{{ allStats.installs }}</span>
</div>
<div class="col col-md-2 mx-2">
<h6>Conversions</h6>
<span>{{ allStats.conversions }}</span>
</div>
<div class="col col-md-2 mx-2">
<h6>Amount</h6>
<span>{{ allStats.conversion_amount }}$</span>
</div>
<div class="col col-md-2 mx-2">
<h6>Churn rate</h6>
<span>{{ allStats.churn_rate }}%</span>
</div>
</div>
Any suggestions on how to create a responsive grid with five columns in Bootstrap?
My desired outcome looks like this:
https://i.sstatic.net/NSf3j.png
I would appreciate any help. Thank you.