HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> input:out-of-range{ background-color: red; color: #fff; } </style> </head> <body> <h1>CSS :out-of-range Selector</h1> <input type="number" min="1" max="5" value="8"> </body> </html>
OUTPUT
×

Save as Private