Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

BS5 Checks and Radios

Checkboxes allow multiple selections, whereas radio buttons restrict selection to one option.

  • .form-check → Provides spacing and styling.
  • .form-check-input → Styles the checkbox or radio button.
  • .form-check-label → Associates labels with inputs for better accessibility.

1. Checkbox Example:

HTML
    <div class="form-check">
      <input class="form-check-input" type="checkbox" id="check1">
      <label class="form-check-label" for="check1">Check me out 1</label>
    </div>
    <div class="form-check">
      <input class="form-check-input" type="checkbox" id="check2">
      <label class="form-check-label" for="check2">Check me out  2</label>
    </div>

Output:

2. Radio Example:

HTML
    <div class="form-check">
      <input class="form-check-input" type="radio" name="options" id="radio1">
      <label class="form-check-label" for="radio1">Option 1</label>
    </div>
    <div class="form-check">
      <input class="form-check-input" type="radio" name="options" id="radio2">
      <label class="form-check-label" for="radio2">Option 2</label>
    </div>

Output: