Bootstrap Buttons

Align buttons to the left

In the example above:

The Bootstrap buttons are aligned to the left using the CSS properties 'display: flex' and 'justify-content: flex-start'.

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 
}