HTML CSS examples for HTML Tag:input text
Reduce input text box height
<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>