Home >Web Front-end >CSS Tutorial >How can I style text within a `` dropdown option?
How to Stylize Text in a
To change the color of specific text within an
In your example, the following CSS can achieve the desired effect:
<code class="css">.grey_color { color: #ccc; font-size: 14px; }</code>
However, to apply the styling solely to the first option, target it with inline styling rather than a class:
<code class="html"><select id="select"> <option style="color: gray" value="null">select one option</option> <option value="1" class="others">one</option> <option value="2" class="others">two</option> </select></code>
Note, CSS is cascaded. Therefore, define a class for any subsequent options that inherit styling but specify differing attributes, such as color. This approach ensures both readability and maintainability within your codebase:
<code class="css">.others { color: black; }</code>
The above is the detailed content of How can I style text within a `` dropdown option?. For more information, please follow other related articles on the PHP Chinese website!