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