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