样式没有“必需”属性的元素使用CSS设置样式


使用 CSS 的 :optional 选择器为没有“必需”属性的 <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 次浏览

开启你的职业生涯

完成课程即可获得认证

开始
广告