I found the following answer How to change select box option background color? but it did not work for me.
I have the following list in my html file
<select>
<option value="item 1" ></option>
<option value="item 2" ></option>
<option value="item 3"></option>
</select>
and the following css
select option[value="item 1"]{
background: rgba(100,100,100,0.3);
}
but i am still getting an empty list with no background colors. What I am trying to get is some sort of a drop down with just colors and no text
something like this
thanks