JSFiddle - React, Tailwind, and code Playground
by TJ VanToll
HTML
<select>
<option>option 1</option>
<option>option 2</option>
<option>option 3</option>
</select>
CSS
select {
color: #777777;
}
select:hover {
color: #FF0000;
}
select:active {
color: #00FF00; /* remove this line and it works ok in IE9 */
}
JavaScript
$("#tabs").tabs();