I'm in the process of creating an address field layout. My goal is to have the State and Country sections positioned on the right side of the city and postal code fields.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<div class="col-sm-12 col-md-6 col-lg-6">
<div class="need-info">
<p class="info-title">Please Input Your Address.</p>
<input type="text" class="form-control" placeholder="Address Line 1">
</div>
<div class="need-info">
<input type="text" class="form-control" placeholder="Address Line 2">
</div>
</div>
<div class="col-sm-12 col-md-3 col-lg-3">
<div class="need-info">
<input type="text" class="form-control" placeholder="City">
</div>
<div class="need-info">
<input type="number" class="form-control" placeholder="Postal Code">
</div>
</div>
<div class="col-sm-12 col-md-3 col-lg-3">
<div class="need-info">
<input type="text" class="form-control" placeholder="State">
</div>
<div class="need-info">
<input type="text" class="form-control" placeholder="Country">
</div>
</div>