Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> input:in-range { border: 2px solid #666; } </style> </head> <body> <h2>:in-range selector example</h2> <form> <input type="number" min="1" max="10" value="5"> </form> </body> </html>