CSS 选择器
.class 选择器
#id 选择器
* 选择器
element 选择器
element.class 属性
element,element 选择器
element element 选择器
element>element 选择器
element+element 选择器
element1~element2 选择器
[attribute] 选择器
[attribute=value] 选择器
[attribute~=value] 选择器
[attribute|=value] 选择器
[attribute^=value] 选择器
[attribute$=value] 选择器
[attribute*=value] 选择器
:active 选择器
:after 选择器
:before 选择器
:checked 选择器
:default 选择器
:disabled 选择器
:empty 选择器
:enabled 选择器
:first-child 选择器
:first-letter 选择器
:first-line 选择器
:first-of-type 选择器
:focus 选择器
:fullscreen 选择器
:hover 选择器
:in-range 选择器
:indeterminate 选择器
:invalid 选择器
:lang 选择器
:last-child 选择器
:last-of-type 选择器
:link 选择器
:not 选择器
:nth-child() 选择器
:nth-last-child() 选择器
:nth-of-type() 选择器
:nth-last-of-type() 选择器
:only-of-type 选择器
:only-child 选择器
:optional 选择器
:out-of-range 选择器
::placeholder 选择器
:read-only 选择器
:read-write 选择器
:required 选择器
:root 选择器
::selection 选择器
:target 选择器
:valid 选择器
:visited 选择器
CSS 变量教程
CSS 动画
CSS 函数
:indeterminate 选择器 - CSS常用知识记录 - 笔下光年
网站首页
:indeterminate 选择器
### 定义和用法 `:indeterminate` 选择器用于选择处于不确定状态的表单元素。 `:indeterminate` 选择器只能用于以下元素: - `<input type="checkbox">` - `<input type="radio">` - `<progress>` 注释:复选框不能用 `HTML` 不确定-它是复选框对象的属性,可以通过 JavaScript 设置为 `true`。 如果未选中表单中具有相同名称值的所有单选按钮,则单选按钮不确定。 注释:通过 `HTML`,复选框无法处于不确定态 - 它是 `checkbox` 对象的属性,可由 JavaScript 设置为 `true`。 如果表单中有相同值的所有单选按钮都未被选中,那么按钮按钮处于不确定状态。 ### 实例 为不确定状态的 `input` 添加红色阴影色: ```css input:indeterminate { box-shadow: 0 0 1px 1px red; } ``` ### 浏览器支持 表格中的数字注明了完全支持该属性的首个浏览器版本。 | 选择器 | Chrome | IE | Firefox | Safari | Opera | |--------|--------|-----|---------|--------|-------| | :indeterminate | 39.0 | YES | 51.0 | YES | YES |
上一篇:
:in-range 选择器
下一篇:
:invalid 选择器