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

原创
ithorizon 5个月前 (10-19) 阅读数 25 #CSS

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

示例

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

在线演示

<!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>

以上就是使用 CSS 设置每个启用元素的样式的详细内容,更多请关注IT视界其它相关文章!



热门