I attempted to create a column layout using Bootstrap 4, but unfortunately, the alignment is off. The nested columns do not display properly and the last one even breaks to a new line.
<div class="row">
<div class="col-sm-3">
<div class="row">
<div class="col-sm-4">
<label class="col-form-label custom-label" for="idNo">Name Label</label>
</div>
<div class="col-sm-1">
<label class="col-form-label">:</label>
</div>
<div class="col-sm-7">
<label class="col-form-label">Value Label</label>
</div>
</div>
</div>
<div class="col-sm-9"></div>
</div>[see image above][1]