I am working on a page where I need to add some style on hover of disabled option(in a select tag).
I have tried below css but none of them is working in internet explorer.
Code:
select>option:disabled:hover {
color:green;
}
select>option:hover([disabled]) {
color:orange;
}
<select size=8 multiple>
<option disabled>5<option>
<option>10<option>
<option>15<option>
<option>20<option>
</select>