Align Bootstrap buttons on the left
Here's is an example of how to align Bootstrap buttons on the left with display: flex;
Here's is an example of how to align Bootstrap buttons on the left with display: flex;
<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>
.demo-justify-content-start {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: flex-start
}