Justify space around Bootstrap buttons
Here's is an example of how to justify space around Bootstrap buttons with display: flex;
Here's is an example of how to justify space around Bootstrap buttons with display: flex;
<div class="demo-justify-content-around">
<button class="btn btn-outline-secondary" type="button">Button</button>
<button class="btn btn-outline-secondary" type="button">Button</button>
<button class="btn btn-outline-secondary" type="button">Button</button>
</div>
.demo-justify-content-around {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: space-around
}