I've been attempting to align divs using bootstrap, but I'm encountering issues.
I prefer not to use a table for this purpose and have experimented with the table tag, but would rather achieve alignment with divs and bootstrap.
My familiarity with bootstrap is limited, but I am making an effort.
Could someone provide assistance?
This is how it appears on my screen:
https://i.sstatic.net/bHruo.png
Below is the code snippet I am working with:
<div class="d-flex flex-column">
<div class="d-flex flex-row justify-content-around">
<div class="d-flex flex-row">
Branch Code:
<input type="text" class="form-control" name="CTD_ITEM">
</div>
<div class="d-flex flex-row">
Name:
<input type="text" class="form-control" name="CTD_DESC01">
</div>
</div>
<div class="d-flex flex-row justify-content-around">
<div class="d-flex flex-row">
State:
<input type="text" class="form-control" name="CTD_DESC04">
</div>
<div class="d-flex flex-row">
Abbreviation:
<input type="text" class="form-control" name="CTD_DESC02">
</div>
</div>
</div>