Similar Question:
Background Image for Select (dropdown) does not work in Chrome
I am trying to update the background image of a select box to https://www.google.com/images/nav_logo101.png Currently, I am using the following code:
<form>
<select id='selectbox'>
<option >A</option>
<option >B</option>
</select>
</form>
Despite my efforts, I have not been able to make it work. I have tried various solutions without success. Any guidance on this issue would be greatly appreciated.
SOLUTION: I was able to resolve the issue by using the following CSS code:
select#selectbox { -webkit-appearance: none; }