Here's my code:
<select id="xyz" name="xyz">
<option></option>
<option value="Monday">Monday</option>
<option style="color:red;" selected="selected" value="Tuesday">Tuesday</option>
<option value="Wednesday">Wednesday</option>
</select>
When I open the drop down, the option is red. However, the selected item shown when the drop down is closed is NOT red.
How do I also make the item red when the drop down is closed?