Change Select List Option background colour on hover

This can be done by implementing an inset box shadow.
eg:

select.decorated option:hover {
    box-shadow: 0 0 10px 100px #1882A8 inset;
}

Here, .decorated is a class assigned to the select box.

Hope you got the point.

Leave a Comment