h1

Styling Input Boxes

August 26, 2007

This is a CSS3 feature. Therefore, no IE6.

To style a text input box:

input[type=text] {
[insert code here]
}

To style a submit button:

input[type=submit] {
[insert code here]
}


From my codix.

Leave a Comment