HTML CSS examples for CSS Form:input
Fuzzy outline around input elements
<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>