CSS参考手册
选择 | Selectors
:out-of-range
该:out-of-range
匹配如下元素:当一个元素的value属性值超出了这个元素的指定范围限制时,CSS伪类匹配该元素。它允许页面给出一个反馈,即当前使用该元素定义的值超出范围限制。如果值大于最大值或者小于最小值,则该值在限制范围之外。
/* Selects any <input>, but only when it has a range */
/* specified, and its value is outside that range */
input:out-of-range {
background-color: rgba(255, 0, 0, 0.25);
}
注意:这个伪类仅适用于具有(并且可能需要)范围限制的元素。在没有这种限制的情况下,元素既不能说是在“范围内”,也不能说在“范围之外”。
语法
:out-of-range
实例
HTML
<form action="" id="form1">
<ul>Values between 1 and 10 are valid.
<li>
<input id="value1" name="value1" type="number" placeholder="1 to 10" min="1" max="10" value="12">
<label for="value1">Your value is </label>
</li>
</form>
CSS
li {
list-style: none;
margin-bottom: 1em;
}
input {
border: 1px solid black;
}
input:in-range {
background-color: rgba(0, 255, 0, 0.25);
}
input:out-of-range {
background-color: rgba(255, 0, 0, 0.25);
border: 2px solid red;
}
input:in-range + label::after {
content:' OK';
}
input:out-of-range + label::after {
content:'out of range!';
}
规范
Specification |
Status |
Comment |
---|---|---|
HTML Living StandardThe definition of ':out-of-range' in that specification. |
Living Standard |
Defines when :out-of-range matches elements in HTML. |
Selectors Level 4The definition of ':out-of-range' in that specification. |
Working Draft |
Initial definition. |
浏览器兼容性
Feature |
Chrome |
Edge |
Firefox (Gecko) |
Internet Explorer |
Opera |
Safari |
---|---|---|---|---|---|---|
Support on <input> |
10.0 |
(Yes) |
29.0 (29.0) |
No support |
11.0 |
5.2 |
Feature |
Android |
Edge |
Firefox Mobile (Gecko) |
IE Mobile |
Opera Mobile |
Safari Mobile |
---|---|---|---|---|---|---|
Support on <input> |
2.3 |
(Yes) |
16.0 (16.0) |
No support |
(Yes) |
(Yes) |
选择 | Selectors相关

层叠样式表( Cascading Style Sheets )是一种用来表现 HTML 或 XML 等文件样式的计算机语言。CSS 不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化。