css4 不确定值伪类
css4 不确定值伪类
不确定值伪类
这个伪类叫做不确定值伪类,它代表 radio 元素或者 checkbox 元素的不确定状态。如果 checkbox/radio 既没有选中也没有未选中,类似于非预选的选择。另一个不确定状态是一个未知的进度表完成状态。
语法
:indeterminate {
/* declarations */
}
示例
:indeterminate {
opacity: 0.6;
}
这个例子减少非预选选择元素的 opacity
至 0.6
。
浏览器支持情况
http://caniuse.com/#feat=css-indeterminate-pseudo
参考资料
- http://css4-selectors.com/selector/css4/indeterminate-value-pseudo-class
- http://css4.rocks/selectors-level-4/indeterminate-value-pseudo-class.php
许可协议:署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
本文链接:https://tanglj.cn/2017/03/13/css4-indeterminate-value-pseudo-class/