#iOS search input
iOS Safari adds some ugly styling to search inputs. Fixable with:
input {
appearance: none!important;
}
important
because Apple adds them with input[type=search] and therefor has a higher priority.
iOS Safari adds some ugly styling to search inputs. Fixable with:
input {
appearance: none!important;
}
important
because Apple adds them with input[type=search] and therefor has a higher priority.