Thursday, December 2, 2010

TextBox with Curve Shape using CSS

Textbox with curve shape...

Create a html textbox. then Add a CSS Class for the textbox.

      The following code

input[type="text"] {
border: 1px solid #505050; /*#123360;*/
font-size: 12px;
width: 180px;
height:17px;
-moz-border-radius:3px;
-khtml-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
}

No comments: