css not selector or code example
Example 1: css not class
/* Style everything but the .different class */
li:not(.different) {
font-size: 3em;
}
Example 2: multiple not css
body:not(.home):not(.away):not(.page-50) {
}
/* Style everything but the .different class */
li:not(.different) {
font-size: 3em;
}
body:not(.home):not(.away):not(.page-50) {
}