I have one option in a select with a color to indicate importance. it is red on the dropdown menu, but when it is selected it is black again. Is there a way to keep it red when it has been selected? Here is jsFiddle to demonstrate. Thanks.
#red{color:red;}
<select>
<option>normal</option>
<option id = "red">important</option>
<option>normal</option>
</select>