Could you help me figure out how to make the <div id="full"> element take up the full width of its parent container, while also ensuring that the 3 buttons inside share this width and have equal sizes with gaps between them?
https://i.stack.imgur.com/rul2S.jpg?
Is there a Bootstrap class that can achieve this layout?
<script src=https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3a5855554e494e485b4a7a0f140a">[email protected]</a>/dist/js/bootstrap.min.js integrity=undefined crossorigin=anonymous></script>
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5b3934342f282f293a2b1b6e756b75">[email protected]</a>/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>