0

i have a select dropdown, which has options element and div with emoji dynamically added to it. It looks something like this

<select class="items-dropdown">
<option class="each-item">Lang1 <div>Emoji here</div></option>
<option class="each-item">Lang2<div>Emoji here</div></option>
</select>

I'm trying to change the background color of option element when hovered , tried option:hover{background-color:} and also tried solutions in the Change Select List Option background colour on hover

Those solutions didn't work either. can someone suggest the workaround? should I switch to ul and li style on dropdown ? I'm unable to style <div> also

1 Answers1

0

this comment is doing the hover section https://stackoverflow.com/a/60073662/11352456

I think it's satisfy your requirement.

Rose Riyadh
  • 518
  • 6
  • 16