Home >Web Front-end >CSS Tutorial >Can I Use the :checked Pseudo-class to Style `` Elements?
The
Solution:
A technique exists to achieve similar styling behavior for
option[selected] { color: red; }
Note: Styling the color of selected options may not be supported across all browsers.
Example:
To hide the currently selected option from a drop-down list:
option:checked { display: none; }
<select> <option>A</option> <option>B</option> <option>C</option> </select>
The above is the detailed content of Can I Use the :checked Pseudo-class to Style `` Elements?. For more information, please follow other related articles on the PHP Chinese website!