I have very big problems because I need to anathematize the styling of some input types. I had something like:
.registration_form_right input:not([type="radio") {
But I do not want to create flags either.
I tried:
.registration_form_right input:not([type="radio" && type="checkbox"]) .registration_form_right input:not([type="radio" && "checkbox"]) .registration_form_right input:not([type="radio") && .registration_form_right input:not(type="checkbox"])
How to use && ? And soon I will need to use || , and I think the usage will be the same.
Update:
I still donโt know how to use || and && . I could not find anything in the W3 docs.
css conditional-operator css-selectors
Misiur May 9 '10 at 8:42 a.m. 2010-05-09 08:42
source share