I'm putting together a form in Bootstrap, and I want 2 inputs in the same row and column, side by side.
I tried the class input-group
, with which I could add buttons and labels to the inputs, but when I put 2 inputs within a input-group
the second input goes down the first one, and I want it to be next to the first and pasted, as it happens with the input-group-addon
.
How can that be achieved? As much as possible using the own classes of Bootstrap.
This is what I have so far
<div class="col-xs-12 col-md-3">
<div class="form-group">
<label for="">Nro. remito</label>
<div class="input-group">
<input name="remitosucursal" id="remitosucursal" type="text" required class="form-control">
<input name="remitonumero" id="remitonumero" type="text" required class="form-control">
</div>
</div>
</div>