Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript How to use different styles in uniform plugin? Re: How to use different styles in uniform plugin?

#122609
rosspenman
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.
}