bootstrap button align left code example

Example 1: bootstrap align right button

<div class="float-sm-left">Float left on viewports sized SM (small) or wider</div><br>
<div class="float-md-left">Float left on viewports sized MD (medium) or wider</div><br>
<div class="float-lg-left">Float left on viewports sized LG (large) or wider</div><br>
<div class="float-xl-left">Float left on viewports sized XL (extra-large) or wider</div><br>

Example 2: bootstrap button center

<div class="container my-4">

        <p class="font-weight-bold">You can align the button to the center by simply adding alignment class to the parent div. See the examples.</p>
    
        <p><strong>Detailed documentation and more examples you can find in our <a href="https://mdbootstrap.com/docs/jquery/utilities/horizontal-align/"
              target="_blank">Bootstrap Horizontal alignment Docs</a> </p>
    
        <hr>
    
        <p class="font-weight-bold">Basic example</p>
      
       <p>Add class <code>.text-center</code> to the parent div to align <strong>any item</strong> inside to the center.</p>
        
        <div class="border border-light p-3 mb-4">
        
          <div class="text-center">
            <button type="button" class="btn btn-primary">Centered button</button>
          </div>
        
        </div>
    
      </div>

Tags:

Html Example