HTML CSS examples for CSS Form:input
Set Input with size and letter spacing
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> input {<!-- w w w . ja va 2 s.co m--> letter-spacing:0.26em; } </style> </head> <body> <input size="5"> </body> </html>