:out-of-range Back
:out-of-range
is a CSS pseudo-class used to style elements that have range limitations when the value that the element bound to is outside the specified range limits.
- Examples of elements with range limitations are sliders and inputs that accept a number as a value. For example:
<input type="number">
- Such an input would have a range of acceptable values specified using the min and max attributes. The value attribute would hold the current value of the input.
<input type="number" min="1" max="10" value="8">
- In this example, if the value exceeds the range limitations, the input will match the :out-of-range selector. The following will style the input when its value it outside the range limit:
input[type="number"]:out-of-range {
}
Case: learning :out-of-range
See the Pen qbwadK by aleen42 (@aleen42) on CodePen.