HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> input:in-range{ background-color: green; color: #fff; } </style> </head> <body> <h1>CSS :in-range Selector</h1> <input type="number" min="1" max="5" value="3"> </body> </html>
OUTPUT
×

Save as Private