JSFiddle - React, Tailwind, and code Playground

HTML

<select>                          
    <option>Hello</option>    
    <option>Stack</option>
    <option class="a">Overflow</option>
</select>

CSS

option.a {
    background-color: red;
}