I need help customizing a Bootstrap 5 radio-inline snippet.
<div class="col-md-6 col-md-offset-3 form-container">
<div class="row">
<div class="col-sm-12 form-group">
<div class="form-check form-check-inline">
<label class="radio-inline">
:::
:::
</label>
<label class="radio-inline">
:::
:::
</label>
<label class="radio-inline">
:::
:::
</label>
</div>
</div>
</div>
</div>
My objectives are to:
- Center the three radio-inline items in the form-container
- Add spacing between each of the three radio-inline items.
I'm unsure how to achieve this customization.