/ Gists / CSS (how to write logical statement)
On gists

CSS (how to write logical statement)

CSS CSS trick

solution.css Raw #

/* https://stackoverflow.com/questions/2797091/css-and-and-or */

/* or || */
.registration_form_right input:not([type="radio"]):not([type="checkbox"]) {}

/* and && */
.registration_form_right input:not([type="radio"]), 
.registration_form_right input:not([type="checkbox"])