I'm making form with a drop down element. I want the placeholder text to be gray, just like in the 'text input' forms, and the answer to be black.
I managed to make the answers another color in the dropdown menu, but when you select it, it changes to the color of the placeholder.
The code I'm using;
<select class="remindmedropdown">
<option value="0" selected disabled>QUESTION</option>
<option value="1">Answer 1</option>
<option value="2">Answer 2</option>
<option value="3">Answer 3</option>
</select>
CSS:
.remindmedropdown {
width: 240px;
height: 40px;
background-color: #FFF;
padding: 10px;
margin-right: 30px;
outline-color:#A7D5E4;
color:#990000;
}
.remindmedropdown option { color: gray; }
Edit: jsfiddle http://jsfiddle.net/QkYC9/1/