Eu tenho um grande problema, porque preciso anatematizar a partir de estilizar alguns tipos de entrada. Eu tinha algo como:
.registration_form_right input:not([type="radio")
{
//Nah.
}
Mas não quero estilizar caixas de seleção também.
Eu tentei:
.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"])
Como usar &&
? E vou precisar usar em ||
breve, e acho que o uso será o mesmo.
Update:
Ainda não sei usar ||
e &&
corretamente. Não consegui encontrar nada nos documentos W3.