I'm encountering an issue where the select
element is aligning with the ID
label instead of the input field. Is there a way to adjust the alignment without adding a label on top of the select
element?
<div class="d-flex">
<div class="d-flex flex-column">
<label>ID</label>
<input class="form-control form-control-sm" style="width: 13rem;" />
</div>
<select class="form-control" style="width: 13rem;">
<option value="0">Select...</option>
<option value="1">Other 1</option>
<option value="2">Other 2</option>
</select>
</div>