Home › Forums › JavaScript › How to use different styles in uniform plugin? › Re: How to use different styles in uniform plugin?
January 28, 2013 at 1:01 pm
#122609
Participant
You could use the CSS `:nth-of-type()` selector, but note that it only works in modern browsers:
div.radio:nth-of-type(1) {
// Specific styling for the first radio.
}