I'm having an issue aligning a text area next to a checkbox in my Bootstrap HTML. Here's the code snippet:
<div class="form-group row">
<div class="col-12 form-check">
<label class="col-3 col-form-label" for="check15">Filter "na" results</label>
<input id="check15" class="box15" type="checkbox">
<textarea class="col-3 form-control form-control-sm" rows="5" id="filter_na_results"></textarea>
</div>
</div>
Despite the code, the textarea is appearing beneath the row with the label and checkbox. How can I adjust this layout so that the textarea appears to the right of the checkbox on the same line?
You can also view the issue on JSFiddle.