Set input number max and min value attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input number

Description

Set input number max and min value attribute

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials