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