It's possible to select the radio buttons that are checked
input[type="radio"]:checked {
// some style
}
But is it possible to select all radio buttons that are not checked?
It's possible to select the radio buttons that are checked
input[type="radio"]:checked {
// some style
}
But is it possible to select all radio buttons that are not checked?
This should do the trick, as there is no such thing called unchecked in css3 yet. As far as I'm aware.
input[type="radio"]:not(:checked) {
/* styles */
}