Create responsive layouts quickly with Bootstrap grid, utilities, components, and theming.
Lessons
Style checkboxes, radios, and switches.
Checkboxes & Radios is easiest to learn by reading the example, changing it, and observing the result.
<div class="form-check">
<input class="form-check-input" type="checkbox" id="remember">
<label class="form-check-label" for="remember">Remember me</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="plan" id="free" checked>
<label class="form-check-label" for="free">Free</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" role="switch" id="notify">
<label class="form-check-label" for="notify">Email notifications</label>
</div>Practice the Checkboxes & Radios example in a small scratch file, then explain what changed and why.