JSFiddle - React, Tailwind, and code Playground
by devingoble
HTML
<select id="thisOne">
<option>One</option>
<option>Two</option>
<option>Three</option>
<option>Four</option>
<option>Five</option>
</select>
<br />
<br />
<select id="thisOtherOne">
<option>One</option>
<option class="green">Two</option>
<option>Three</option>
<option class="red">Four</option>
<option>Five</option>
</select>
CSS
#thisOne {
Color:blue;
}
.green {
Color:green;
}
.red {
Color:red;
}