Logo Luan Morina
Button Alignment

Align Bootstrap buttons on the left

Here's is an example of how to align Bootstrap buttons on the left with display: flex;

HTML

<div class="demo-justify-content-start">
<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-start {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: flex-start 
}
   Align Bootstrap buttons on the left