W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> input:out-of-range { border: 2px solid red; } </style> </head> <body> <h1>演示 :out-of-range 选择器</h1> <input type="number" min="5" max="10" value="17"> <p>请尝试在给定范围(5 到 10)之间输入数字,来查看样式消失。</p> </body> </html>