Why is the checkbox not in line with the label?
<div class="row g-1 border-bottom p-3">
<div class="col border-end justify-content-center d-flex align-items-center">
<div class="h6 text-sm-center h-25">
osiągniecia
</div>
</div>
<div class="col ps-3">
<div class="form-check">
<input type="checkbox" name="wyroznienie" id="wyroznienie">
<label for="wyroznienie">
Świadectwo ukończenia szkoły podstawowej z wyróżnieniem
</label>
</div>
<div class="form-check">
<input type="checkbox" name="wyroznienie2" id="wyroznienie2">
<label for="wyroznienienie2">
Osiągnięcia w zakresie aktywności społecznej, w tym na rzecz środowiska szkolnego, w szczególności w formie wolontariatu
</label>
</div>
</div>
</div>
I need the checkbox to be in line with its label.
2
Answers
Use
display: flex
in.form-check
.add somemargin to the input
andpadding to the label
Demo
Use the appropriate checkbox classes:
form-check-input
andform-check-label
.See the documentation.