bef20830c261df1bf040898496b7c167752e7a6a1013457caec00faac707352d21314c5a87c385ee6ac46f625b4a40feb349d05748680d42e65069e1e33310 691 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # [postcss][postcss]-minify-selectors
  2. > Minify selectors with PostCSS.
  3. ## Install
  4. With [npm](https://www.npmjs.com/package/postcss-minify-selectors) do:
  5. ```
  6. npm install postcss-minify-selectors --save
  7. ```
  8. ## Example
  9. ### Input
  10. ```css
  11. h1 + p, h2, h3, h2{color:blue}
  12. ```
  13. ### Output
  14. ```css
  15. h1+p,h2,h3{color:blue}
  16. ```
  17. For more examples see the [tests](test.js).
  18. ## Usage
  19. See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
  20. examples for your environment.
  21. ## Contributors
  22. See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
  23. ## License
  24. MIT © [Ben Briggs](http://beneb.info)
  25. [postcss]: https://github.com/postcss/postcss