Reduce the height of the textbox - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Text

Description

Reduce the height of the textbox

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">
#box {<!--   www. j  ava2s . c om-->
   height:11px;
}
</style> 
 </head> 
 <body> 
  <textarea id="box" name="" placeholder=""></textarea>  
 </body>
</html>

Related Tutorials