Working with Form Elements

Is there any way to change, through CSS, the formatting of different form elements (eg all radio, or all buttons) with adding a class to them?

Thanks,

TobyYes use something like this for all <INPUT>s
INPUT {border-top:none;border-right:none;border-bottom:1px solid #cc0;border-left:none;color:blue;}
or
INPUT.entry {whatever}
for class="entry"select boxes are more troublesome to customize, I tried editing a few one time and I couldn't get it to work like the other form elements were.

HavikThank you both for your replys, fantastic. I was wondering if there is something similar to a:link, maybe input:radio or input:text or something, but i think your answers point to the case being no.

Thanks again,

Toby
 
Back
Top