HTML CSS examples for CSS Layout:Text
Reduce the height of the textbox
<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>