BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <style> input:out-of-range { border:2px solid red; } </style> </head> <body> <h3> :out-of-range 选择器实例演示。</h3> <input max="10" min="5" type="number" value="17" /> <p>在input中输入一个值 (小于 5 或者 大于 10), 查看样式的变化。</p> </body> </html>
运行结果