Logo Luan Morina
Button Alignment

Align Bootstrap buttons on the right

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

HTML

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

CSS

.demo-justify-content-end {
display: flex;
flex-direction: row;
gap: 20px;
justify-content: flex-end
}
   Align Bootstrap buttons on the right