运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> input:out-of-range { border: 2px solid red; } </style> </head> <body> <h1>Demo of the :out-of-range selector</h1> <input type="number" min="5" max="10" value="17"> <p>Try typing a number within the given range (between 5 and 10), to see the styling disappear.</p> </body> </html>