JSFiddle - React, Tailwind, and code Playground

by lottikarotti

HTML

<select>
    <option>Option 1</option>
    <option>Option 2</option>
    <option>Option 3</option>
</select>

CSS

option:nth-child(1){
    background-color: tomato;
}

option:nth-child(2){
    background-color: lightblue;
}

option:nth-child(3){
    background-color: burlywood;
}