CSS Forms – Text Boxes

CSS Forms – Text Boxes

input[type="text"],
input[type="email"],
.input[type="url"]{ 
 width:100%;
 height:25px;
 line-height:25px;
 color:#333;
 background-color:#fff;
 border:1px solid #236;
 border-radius:3px;
 padding:3px;
}
 
Comments are closed.