:default
Baseline 广泛可用
此功能非常成熟,可以在许多设备和浏览器版本上运行。它从 2020年1月.
报告反馈
试试看
The :default
CSS pseudo-class selects form elements that are the default in a group of related elements.
- What this selector matches is defined in HTML Standard §4.16.3 Pseudo-classes — it may match the
<button>
,<input type="checkbox">
,<input type="radio">
, and<option>
elements - A default option element is the first one with the
selected
attribute, or the first enabled option in DOM order.multiple
<select>
s can have more than oneselected
option, so all will match:default
. <input type="checkbox">
and<input type="radio">
match if they have thechecked
attribute.
语法
<button>
matches if it is a <form>
's default submission button: the first <button>
in DOM order that belongs to the form. This also applies to <input>
types that submit forms, like image
or submit
.:default {
/* ... */
}
示例
HTML
css
<fieldset>
<legend>Favorite season</legend>
<input type="radio" name="season" id="spring" value="spring" />
<label for="spring">Spring</label>
<input type="radio" name="season" id="summer" value="summer" checked />
<label for="summer">Summer</label>
<input type="radio" name="season" id="fall" value="fall" />
<label for="fall">Fall</label>
<input type="radio" name="season" id="winter" value="winter" />
<label for="winter">Winter</label>
</fieldset>
CSS
<button>
matches if it is a <form>
's default submission button: the first <button>
in DOM order that belongs to the form. This also applies to <input>
types that submit forms, like image
or submit
.input:default {
box-shadow: 0 0 2px 1px coral;
}
input:default + label {
color: coral;
}
html
规范
结果 |
---|
规范 # HTML 标准 |
selector-default # 选择器级别 4 |
浏览器兼容性
default-pseudo
另请参见
- 并在启用 JavaScript 时加载。
- 启用 JavaScript 以查看数据。
- Web 表单 - 使用用户数据