Is there a more effective way to arrange 2 buttons and a search bar together on the same line so that they occupy the full width?
<div class="panel-heading">
<div style="float:left;vertical-align: center;">
<a type="button" class="btn btn-info">
<span class="glyphicon glyphicon-erase"></span><b> Search</b>
</a>
</div>
<div style="float:right;">
<a type="button" class="btn btn-warning">
<span class="glyphicon glyphicon-erase"></span><b> Clear</b>
</a>
</div>
<div style="overflow: hidden;padding: 1em;">
<input type="text" value="Enter your search here..." ng-model="searchText" style="width: 100%;"></input>
</div>
</div>