Hi,
A few examples at what can be achieved with CSS and form text box’s. CSS helps different style and effect on text-boxes. Below I have given some text-box styles. You’ll find a style of all coded with just pure CSS3 code.
Try this style in your code..
Style – 1 /*Background Color */ .tb1 { background-color : #99FFCC; border: 1px solid #008000; width: 230px; } |
||
Demo Above Style: | ||
Style – 2 /* Border Color */ .tb2 { border: 2px dashed #D1C7AC; width: 230px; } |
||
Demo Above Style: | ||
Style – 3 /* Rounded Corner */ .tb3 { border:2px solid #456879; border-radius:10px; height: 22px; width: 230px; } |
||
Demo Above Style: | ||
Style – 4 /* Double Border */ .tb4 { border: 3px double #CCCCCC; width: 230px; } |
||
Demo Above Style: |