CSS :checked 选择器


实例

为所有被选中的 input 元素设置背景色:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. input:checked {
  6. height: 50px;
  7. width: 50px;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <form action="">
  13. <input type="radio" checked="checked" value="male" name="gender"><br>
  14. <input type="radio" value="female" name="gender"><br>
  15. <input type="checkbox" checked="checked" value="Bike"> 我有一辆自行车<br>
  16. <input type="checkbox" value="Car"> 我有一辆汽车
  17. </form>
  18. </body>
  19. </html>

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

选择器
:checked4.09.03.53.29.6

定义和用法

:checked 选择器匹配每个已被选中的 input 元素(只用于单选按钮和复选框)。


更多实例

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. option:checked {
  6. height: 100px;
  7. width: 100px;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <select>
  13. <option value="benz">奔驰</option>
  14. <option value="bmw">宝马</option>
  15. <option value="porsche">保时捷</option>
  16. </select>
  17. </body>
  18. </html>

相关页面

CSS 教程:CSS disabled 选择器

CSS 教程:CSS enabled 选择器

分类导航