HTML CSS examples for CSS Widget:UL
Override default font-size of password inputs
<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>