bootstrap flex grow code example
Example 1: ustify-content: flex-end; bootstrap
<div class="d-flex justify-content-end">...</div>
Example 2: bootstrap 5 flex grow
<div class="d-flex bd-highlight">
<div class="p-2 flex-grow-1 bd-highlight">Flex item</div>
<div class="p-2 bd-highlight">Flex item</div>
<div class="p-2 bd-highlight">Third flex item</div>
</div>
Example 3: flex wrap bootstrap
<div class="d-flex flex-wrap">...</div>