Logo Luan Morina
Button Alignment

Justify space around Bootstrap buttons

Here's is an example of how to justify space around Bootstrap buttons with display: flex;

HTML

<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>

CSS

.demo-justify-content-around {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: space-around
}
   Justify space around Bootstrap buttons