I am attempting to create custom inline checkboxes where the text is aligned above the checkbox. The goal is to have the checkbox horizontally centered compared to the text, resembling this example:
https://i.sstatic.net/GkYVI.png
My initial approach involved adding the <br/>
tag and repositioning the text over the control, as shown below:
<label class="custom-control custom-checkbox">
<span class="custom-control-indicator"></span>
<span class="custom-control-description">Check this custom checkbox</span>
<br />
<input type="checkbox" class="custom-control-input">
</label>
Unfortunately, my attempts were unsuccessful. You can view the failed plunker here.
For comparison, you can check out the normal inline checkboxes of Bootstrap v4 in this plunker.