HTML CSS examples for CSS Widget:Border Style
Create input with border
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> input{<!--from w ww .j a v a 2 s. c o m--> border: 1px solid #CFC8BC; border-radius: 4px; box-shadow: 0 1px #CFC8BC; } </style> </head> <body> <div> <input type="text" id="inputName" name="name"> </div> </body> </html>