Is it possible to enhance the search field by adding a button to make it more user-friendly?
Below is the code I have been using:
<div id="search">
<div class="container">
<h1>Search U.K. house price data</h1>
<form class="has-success has-feedback has-feedback-left">
<label class="control-label sr-only" for="inputSearch">Search U.K. house price data</label>
<input class="form-control" type="text" id="inputSearch" placeholder="Enter a postcode, street or address">
<span class="glyphicon glyphicon-search form-control-feedback"></span>
<button class="btn" type="submit">SEARCH</button>
</form>
</div>
</div>
This is the result I achieved with the provided code:
.btn {
position:absolute;
top: 20px;
right: 100px;
}