Last updated 3 years ago
Was this helpful?
PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors
:not()
http://dev.w3.org/csswg/selectors-4/#negation
Using this input.css:
input.css
you will get:
p:not(:first-child):not(.special) { color: red; }
$ npm install postcss-selector-not
var postcss = require("postcss") var output = postcss() .use(require("postcss-selector-not")) .process(require("fs").readFileSync("input.css", "utf8")) .css
p:not(:first-child, .special) { color: red; }