为每一个已选中的元素添加 CSS 样式


若要为每一个已选中的 <input> 元素添加样式,请使用 CSS :checked 选择器。你可以尝试运行以下代码来实现 :checked 选择器 -

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:checked {
            height: 20px;
            width: 20px;
         }
      </style>
   </head>
   <body>
      <p>Fav sports:</p>
      <form action="">
         <input type = "checkbox" value = "Football">Football<br>
         <input type = "checkbox" value = "Cricket">Cricket<br>
         <input type = "checkbox" checked = "checked" value = "Tennis"> Tennis<br>
         <input type = "checkbox" value = "Badminton">Tennis
      </form>
   </body>
</html>

输出

更新于:2020 年 6 月 22 日

140 次浏览

启动你的 职业

通过完成课程来获取证书

开始
广告