CSS :required 选择器
如果 input 元素设置了 "required" 属性,设置其为黄色:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> input:required { background-color: yellow; } </style> </head> <body> <h3>A demonstration of the :required selector.</h3> <p>An optional input element:<br><input></p> <p>A required input element:<br><input required></p> <p> :required选择器选择表单元素有“需要”属性.</p> </body> </html>
定义和使用
:required 选择器在表单元素是必填项时设置指定样式。
表单元素可以使用 required 属性来设置必填项。
注意: :required 选择器只适用于表单元素: input, select 和 textarea。
浏览器支持
表格中的数字表示支持该属性的第一个浏览器版本号。
选择器 | |||||
---|---|---|---|---|---|
:required | 10.0 | 10.0 | 4.0 | 5.0 | 10.0 |
CSS 语法
:required{css 声明;}
相关页面
CSS 选择器 :optional