not after css code example
Example 1: css not
/* Selects any element that is NOT a paragraph */
:not(p) {
color: blue;
}
Example 2: opposite of :not css
$morphemes.not('[data-width]');
$morphemes.not(':not([data-width])'); //Double Negative logic, derp derp.