I want the help box to be embedded with an input field (if there is free space to the right of the input field), but it is below the input field no matter how wide the screen is. How to make it inline?
Here is the form:
<form class="form-inline" role="form"> <div class="form-group"> <label for="query">Search</label> <input type="text" ng-model="query" class="form-control" id="query" placeholder="Enter search text"> <span class="help-block"> Search in any field... </span> </div> </form>
And here is the plunk .
EricC source share