C
C
Chesterfield252021-07-05 23:09:08
Bootstrap
Chesterfield25, 2021-07-05 23:09:08

How to align a button to the right?

I have a text and a button, they are both positioned to the left, how do I align the button to the right?

<div class="row">
          <div class="col-md-12">
            <h4>MicroWallets</h4>
            <button class="btn btn-success mt-2"><i class="bi bi-plus"></i></button>
          </div>
        </div>

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Anton Neverov, 2021-07-05
@TTATPuOT

V
Vladimir Golub, 2021-07-06
@RazerVG

<div class="row">
          <div class="col-md-12">
            <div class="d-flex justify-content-between">
                <h4>MicroWallets</h4>
                <button class="btn btn-success mt-2"><i class="bi bi-plus"></i></button>
            </div>
          </div>
        </div>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question