I am making a button input and attempting to give it a search icon rather than giving it a value="search" and the button saying "search" on it. Going for a different look but nothing is working. Below is HTML:
<input class="searchButton" type="button">
Then in CSS:
.searchButton{
background-image: url('search.png');
outline: none;
background-size: cover;
}
So far, no good results. Any help would be appreciated.