Postcss Selector Not Save Abandoned

PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to more compatible CSS (multiple css3 :not() selectors)

Project README
⚠️ PostCSS Selector Not was moved to @csstools/postcss-plugins. ⚠️
Read the announcement

postcss-selector-not CSS Standard Status build status

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

'Can I use' table

Installation

$ npm install postcss postcss-selector-not

Usage

Using this input.css:

p:not(:first-child, .special) {
  color: red;
}

you will get:

p:not(:first-child):not(.special) {
  color: red;
}

Changelog

License

Open Source Agenda is not affiliated with "Postcss Selector Not" Project. README Source: csstools/postcss-selector-not
Stars
49
Open Issues
0
Last Commit
1 year ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating