peach a19a732be8 commit message | il y a 2 ans | |
---|---|---|
.. | ||
dist | il y a 2 ans | |
CHANGELOG.md | il y a 2 ans | |
LICENSE | il y a 2 ans | |
README.md | il y a 2 ans | |
package.json | il y a 2 ans |
PostCSS plugin to transform
:not()
W3C CSS level 4 pseudo class to :not() CSS level 3 selectors
http://dev.w3.org/csswg/selectors-4/#negation
$ 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
Using this input.css
:
p:not(:first-child, .special) {
color: red;
}
you will get:
p:not(:first-child):not(.special) {
color: red;
}