https://i.sstatic.net/UrB5f.jpg
Is there a way to align the 3 input fields so that their right edges are all vertical? I still want the text+Input to be centered within the column but aligned vertically...
Using Bootstrap 3.3.7
HTML:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="table-responsive col-lg-12 ">
<table class="table table-bordered text-center">
<thead>
</thead>
<tbody>
<tr>
<th class="text-center" scope="row">Net. Config</th>
<td>
<form class="form-inline">
IP Address:
<input type="text" class="form-control txbIPsubmit" id="SYST_IPAD" placeholder="0.0.0.0">
</form>
<form class="form-inline">
NetMask :
<input type="text" class="form-control txbIPsubmit" id="SYST_NETM" placeholder="0.0.0.0">
</form>
<form class="form-inline">
Gateway :
<input type="text" class="form-control txbIPsubmit" id="SYST_GWAD" placeholder="0.0.0.0">
</form>
<div class="form-control-static">
<input type="checkbox" class="form-check-input" id="SYST_DHCP">
<label class="form-check-label" for="SYST_DHCP">DHCP</label>
</div>
<form class="form-inline">
<button type="button" class="btn btn-light" id="btnNetConfig">Apply</button>
</form>
</td>
</tr>
<tr>
</tbody>
</table>
</div>