Set Input with size and letter spacing - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

Set Input with size and letter spacing

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 {<!--   w w w  .  ja va  2  s.co m-->
   letter-spacing:0.26em;
}
</style> 
 </head> 
 <body> 
  <input size="5">  
 </body>
</html>

Related Tutorials