Reduce input text box height - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input text

Description

Reduce input text box height

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">
input {<!--from  w  w  w.j  a  v a2  s.  c  o m-->
   height:6px;
}
</style> 
 </head> 
 <body> 
  <input type="text">  
 </body>
</html>

Related Tutorials