代码示例:(标识:selector_optional)
<!DOCTYPE html>
<html>
<head>
<style>
input:optional {
  background-color: yellow;
}
</style>
</head>
<body>

<h1>演示 :optional 选择器</h1>

<p>可选的 input 元素:<br><input></p>

<p>必填的 input 元素:<br><input required></p>

<p>:optional 选择器选取不带 "required" 属性的表单元素。</p>

<p><b>注释:</b>Internet Explorer 9 以及更早的版本不支持 :optional 选择器。</p>

</body>
</html>
运行结果: