Fuzzy outline around input elements - HTML CSS CSS Form

HTML CSS examples for CSS Form:input

Description

Fuzzy outline around input elements

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  v a2s  .  c  om-->
   border:none;
   -moz-box-shadow:0 0 3px Chartreuse;
   -webkit-box-shadow:0 0 3px yellow;
   box-shadow:0 0 3px blue;
   font-size:3em;
}
</style> 
 </head> 
 <body> 
  <input type="text">  
 </body>
</html>

Related Tutorials