Search code examples
checkboxswitch-statementbootstrap-5

Bootstrap 5 text BEFORE switch-checkbox (without extra addons/plugins)


I use Bootstrap 5 and I wand to use a switch-toggle.

I don't want to use any other addons, but only with bootstrap.

How to put a Text BEFORE the toggle switch.

This does not work:

<div class="form-check form-switch">
  off
  <input type="checkbox" class="form-check-input" id="site_state">
  <label for="site_state" class="form-check-label">on</label>
</div>

Anyone have an idea ?


Solution

  • What if you put your Off label before the checkbox and make everything display: inline-block?

    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet"/>
    
    
    <div class="container">
        <div class="row">
            <div class="col">
                <div class="d-inline-block me-1">Off</div>
                <div class="form-check form-switch d-inline-block">
                    <input type="checkbox" class="form-check-input" id="site_state" style="cursor: pointer;">
                    <label for="site_state" class="form-check-label">On</label>
                    </div>
            </div>
        </div>
    </div>