Override default font-size of password inputs - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL

Description

Override default font-size of password inputs

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">
@media screen and (-webkit-min-device-pixel-ratio:0)  {
   .pass {<!--   w  w w.  j  av  a  2s.  co m-->
      -webkit-text-stroke-width:.3em;
      letter-spacing:0.3em;
   }

}
</style> 
 </head> 
 <body> 
  <input type="password" class="pass" value="dfjlfsdkljf"> 
  <br> 
  <input type="password" value="dfjlfsdkljf">  
 </body>
</html>

Related Tutorials