Set number input with min="0" max="10" step="0.1" value="1.0" - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input number

Description

Set number input with min="0" max="10" step="0.1" value="1.0"

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!-- www  .  ja  v a 2  s . com-->
 <body> 
  <input type="number" min="0" max="10" step="0.1" value="1.0">  
 </body>
</html>

Related Tutorials