Styling Select Drop down box

Here’s a DEMO.

Just add this CSS rule:

select > option {
   background: color;
}

For example:

select > option {
   background: pink; /* Or an hexadecimal value */
}

Cheers, Leo!

Leave a Comment