In order to fulfill a specific requirement, I need to position two glyphicons directly next to an input field. This means that the width of the input field should be reduced to accommodate the two icons. Unfortunately, the code below causes the glyphicons to appear on a separate line.
<div class="row">
<label>Managed Segment GOC</label>
<div style="width:inherit;">
<p>
<input type="text" class="form-control" ng-model="formData.goc" placeholder="Look Up for Managed Segment">
<span class="glyphicon glyphicon-arrow-up"></span>
<span class="glyphicon glyphicon-arrow-down"></span>
</p>
<div class="text-right" >Clear</div>
</div>
<label>Default RLOB</label>
<input type="text" class="form-control" ng-model="formData.rlob" placeholder="">
</div>