How to change the text color of select option?

By Aryan Maurya / October 20, 2020

Have you ever wanted to change the text color of a select option element of a drop down?

<select>
    <optgroup label="select one option">
        <option>one</option>  
        <option>two</option>  
        <option>three</option>  
        <option>four</option>  
        <option>five</option>
    </optgroup>
</select>

Just copy paste the below css in your css file.

select option{
    color: red;
}

 

May I Help You?