陪你做好前端设计!
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>素材8网教程(study.sucai8.cn)</title> <style> input:in-range { border:2px solid yellow; } </style> </head> <body> <h3>:in-range 选择器实例演示。</h3> <input type="number" min="5" max="10" value="7" /> <p>在input中输入一个值 (小于 5 或者 大于 10), 查看样式的变化。</p> </body> </html>
运行结果