样式没有 “required” 属性的元素和 CSS


使用 CSS 中的 :optional 选择器,为没有 “required” 属性的 <input> 元素设定样式。

示例

可以尝试运行下列代码,以实现 :optional 选择器

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:optional {
            background-color: blue;
         }
      </style>
   </head>
   <body>
      <form>
         Subject: <input type = "text" name = "subject"><br>
         Student: <input type = "text" name = "student" required><br>
      </form>
   </body>
</html>

更新日期:2020 年 7 月 1 日

202 次浏览

开启你的 职业

完成课程,获得认证

立即开始
广告