UNPKG

wecui

Version:

一款基于Vue2.x版本的移动端web组件

45 lines (30 loc) 788 B
# postcss-selector-not [![Build Status](https://travis-ci.org/postcss/postcss-selector-not.svg?branch=master)](https://travis-ci.org/postcss/postcss-selector-not) > PostCSS plugin to transform `:not()` W3C CSS leve 4 pseudo class to :not() CSS level 3 selectors http://dev.w3.org/csswg/selectors-4/#negation ## Installation ```console $ npm install postcss-selector-not ``` ## Usage ```js var postcss = require("postcss") var output = postcss() .use(require("postcss-selector-not")) .process(require("fs").readFileSync("input.css", "utf8")) .css ``` Using this `input.css`: ```css p:not(:first-child, .special) { color: red; } ``` you will get: ```css p:not(:first-child), p:not(.special) { color: red; } ``` --- ## [Changelog](CHANGELOG.md) ## [License](LICENSE)