how to say if this class is not present do not apply the css to it? code example
Example: css not class
/* Style everything but the .different class */
li:not(.different) {
font-size: 3em;
}
/* Style everything but the .different class */
li:not(.different) {
font-size: 3em;
}