<select>
<option disabled selected>=select=</option>
<option>1</option>
</select>
When the user sees 「=select=」, I want to the color is gray.
And when selected 「1」, the color is black like this image:
select { color: black; }
select:empty { color: gray; }
//invalid
Is it possible to change color only with css? Thanks!