HTML CSS examples for HTML Tag:input number
Set input number max and min value attribute
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from ww w .j ava2s. c o m--> <body> <input type="number" max="99" min="9"> </body> </html>