2025: A cool new way to colour the "placeholder" option using the modern :has()
pseudo class.
<select>
<option class="placeholder">Please select something</option>
<option>Select me</option>
</select>
select:has(option.placeholder) {
color: red;
}