CSS :default 选择器
实例
为默认的 input 元素添加红色阴影色:
<!DOCTYPE html>
<html>
<head>
<style>
input:default {
box-shadow: 0 0 1px 1px red;
}
</style>
</head>
<body>
<h2>default 选择器</h2>
<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>
定义和用法
:default
选择器用于在一组相关元素中选取默认表单元素。
:default
选择可用于以下元素:
- <button>
- <input type="checkbox">
- <input type="radio">
- <option>
版本: | CSS3 |
---|
浏览器支持
表格中的数字注明了完全支持该选择器的首个浏览器版本。
选择器 | |||||
---|---|---|---|---|---|
:default | 10.0 | 12.0 | 4.0 | 5.0 | 10.0 |
注释:Internet Explorer 11 以及更早的版本不支持 :default 选择器。
CSS 语法
:default {
css declarations;
}