返回到:CSS 伪类(Pseudo-classes) | CSS教程
定义和使用
:out-of-range 选择器用于标签的值在指定区间之外时显示的样式。
注意: :out-of-range 选择器只作用于能指定区间之外值的元素,例如 input 元素中的 min 和 max 属性。
浏览器支持
表格中的数字表示支持该属性的第一个浏览器版本号。
选择器 | 谷歌 | IE | 火狐 | 苹果 | opera |
---|---|---|---|---|---|
:only-child | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
CSS 语法
:out-of-range
{
css 声明;
}
实例
输入的值在指定区间外时,设置指定样式:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> <style> input:out-of-range { border:2px solid red; } </style> </head> <body> <h3> :out-of-range 选择器实例演示。</h3> <input type="number" min="5" max="10" value="17" /> <p>在input中输入一个值 (小于 5 或者 大于 10), 查看样式的变化。</p> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/cssprop/5397.html