x
1
2
<html>
3
<head>
4
<style>
5
input:out-of-range {
6
border: 2px solid red;
7
}
8
</style>
9
</head>
10
<body>
11
12
<h3>A demonstration of the :out-of-range selector.</h3>
13
14
<input type="number" min="5" max="10" value="17">
15
16
<p>Try typing a number within the given range (between 5 and 10), to see the styling disappear.</p>
17
18
</body>
19
</html>