My dilemma is trying to center a button group within a container while also making each button occupy half of the container's width. I've attempted using "w-50" and "btn-block," but they don't seem to work when in conjunction with "btn-group."
Here's the code I'm currently working with:
<div class="container text-center">
<div class="btn-group" role="group">
<button type="button" class="btn btn-outline-light">
Back
</button>
<button type="submit" class="btn btn-outline-light">
Next
</button>
</div>
</div>
If anyone has any suggestions, please let me know. Thanks!