设置样式,为每个启用的元素设置样式,用 CSS


要为每个启用的 <input> 元素设置样式,请使用 CSS :enabled 选择器。

示例

您可以尝试运行以下代码,为启用的 <input> 元素设置样式

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:enabled {
            background: blue;
         }
      </style>
   </head>
   <body>
      <form action = "">
         Subject <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student"><br>
         Age: <input type = "number" name = "age" disabled><br>
      </form>
   </body>
</html>

更新日期:30-06-2020

130 次浏览

开启你的 职业

完成课程,获得认证

立即开始
广告
© . All rights reserved.