As based on my example below, how can I make <div id="full"> take the full width of the parent and have the 3 buttons inside share this width and have the same sizes with gaps between them?
Is there a Bootstrap class that can do that?
<script src=https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js integrity=undefined crossorigin=anonymous></script>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css integrity=undefined crossorigin=anonymous>
<div class="d-grid gap1">
<div id="full">
<button type="button" class="btn btn-success">shared width button</button>
<button type="button" class="btn btn-success">shared width button</button>
<button type="button" class="btn btn-success">shared width button</button>
</div>
<button type="button" class="btn btn-primary">full width button</button>
</div>
