W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> input:default { box-shadow: 0 0 1px 1px red; } </style> </head> <body> <h1>default 选择器</h1> <p>:default 选择器在一组相关元素中选择默认表单元素。</p> <p>默认情况下,“男性”单选按钮处于选中状态:</p> <form action=""> <input type="radio" name="gender" value="male" checked> 男性<br> <input type="radio" name="gender" value="female"> 女性<br> <input type="radio" name="gender" value="other"> 其他 </form> <p>Internet Explorer 11 以及更早的版本不支持 :default 选择器。</p> </body> </html>