Problem Statement
Which wrapper class is used for checkboxes and radios?
Explanation
Wrap each checkbox or radio input inside a .form-check div. The input should use .form-check-input and the label should use .form-check-label for correct spacing and alignment.
Code Solution
SolutionRead Only
<div class='form-check'> <input class='form-check-input' type='checkbox' id='a1'> <label class='form-check-label' for='a1'>Accept</label> </div>
