I am trying to update the background color of my select box to a solid color while keeping the right arrow (drop-down arrow) visible.
My current approach is as follows:
select {
-webkit-appearance: none;
border: 0;
background: none;
}
While this method works well in most browsers, Safari on my iPhone 4s with iOS 7 is an exception. In this case, the right-arrow disappears and may confuse users regarding the functionality of the select box.
Removing the -webkit-appearance property does not resolve the issue.
I want to avoid creating a fake arrow, as this could impact other browsers' appearances.
Any suggestions on how to retain the right arrow when changing the background color?