not selector css code example
Example 1: css not class
/* Style everything but the .different class */
li:not(.different) {
font-size: 3em;
}
Example 2: css not
/* Selects any element that is NOT a paragraph */
:not(p) {
color: blue;
}
Example 3: opposite of :not css
$morphemes.not('[data-width]');
$morphemes.not(':not([data-width])'); //Double Negative logic, derp derp.