I am trying to change the color of the first option to grey color, that only the text (select one option) but here it's not working here:
.grey_color {
color: #ccc;
font-size: 14px;
}
<select id="select">
<option selected="selected"><span class="grey_color">select one option</span></option>
<option>one</option>
<option>two</option>
<option>three</option>
<option>four</option>
<option >five</option>
</select>
My jsfiddle is here jsfiddle