Is there a proper way to reset the appearance of a search input so that it resembles a text field in Safari?
I'm experiencing an issue with Safari where there is unwanted padding on the left side of the search input that I can't seem to get rid of.
input {
-webkit-appearance: none;
padding: 0;
}
<input type="search" value="abc"><br>
<input type="text" value="abc">