How to change the select option HTML tag color with CSS

3 Answers

0 votes
<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            select {
                color: gray;
            }
        </style>
    </head>
    <body>
        <select name="gender">
            <option value="iam">I am</option>
            <option style="color:black" value="female">Female</option>
            <option style="color:black" value="male">Male</option>
        </select>
    </body>
</html>

 



answered Dec 26, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            select option {
                color: blue;
            }
        </style>
    </head>
    <body>
        <select name="gender">
            <option style="color:gray" value="iam">I am</option>
            <option value="female">Female</option>
            <option value="male">Male</option>
        </select>
    </body>
</html>

 



answered Dec 26, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            select option {
                color: blue;
            }
        </style>
        
        <style type="text/css">
            .numbers option {
                color: green;
            }
        </style>
    </head>
    <body>
        <select name="gender">
            <option style="color:gray" value="iam">I am</option>
            <option value="female">Female</option>
            <option value="male">Male</option>
        </select>
        <select>
    <optgroup label="Numbers" class="numbers">
        <option style="color:gray" value="0">Zero</option>
        <option value="1">One</option>
        <option value="2">Two</option>
    </optgroup>

</select>
    </body>
</html>

 



answered Dec 27, 2015 by avibootz

Related questions

3 answers 404 views
1 answer 270 views
1 answer 259 views
1 answer 277 views
2 answers 336 views
1 answer 275 views
1 answer 235 views
...