Input type="number" inner spinner style - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

Input type="number" inner spinner style

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
.hidearrows {<!--   w ww .j a v a2 s.c  o m-->
   position:absolute;
   display:inline-block;
   margin-left:-22px;
   background-color:Chartreuse;
   z-index:11;
   height:21px;
   width:21px;
   margin-top:2px;
}
</style> 
 </head> 
 <body> 
  <input type="number" value="1" step="1"> 
  <span class="hidearrows"></span>  
 </body>
</html>

Related Tutorials