How to give spacing between buttons using Bootstrap and HTML?

Spread the love

To give spacing between buttons using Bootstrap and HTML, we can use its margin classes.

For instance, we write

<button class="btn btn-outline-primary mr-1" href="#">Sign up</button>
<button class="btn btn-outline-primary" href="#">Login</button>

to add the mr-1 class to the first button to add some margin to the right of the button.

Leave a Reply

Your email address will not be published. Required fields are marked *