You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.9 KiB

2 years ago
  1. # PostCSS [![Gitter][chat-img]][chat]
  2. <img align="right" width="95" height="95"
  3. alt="Philosopher’s stone, logo of PostCSS"
  4. src="https://postcss.org/logo.svg">
  5. [chat-img]: https://img.shields.io/badge/Gitter-Join_the_PostCSS_chat-brightgreen.svg
  6. [chat]: https://gitter.im/postcss/postcss
  7. PostCSS is a tool for transforming styles with JS plugins.
  8. These plugins can lint your CSS, support variables and mixins,
  9. transpile future CSS syntax, inline images, and more.
  10. PostCSS is used by industry leaders including Wikipedia, Twitter, Alibaba,
  11. and JetBrains. The [Autoprefixer] PostCSS plugin is one of the most popular
  12. CSS processors.
  13. PostCSS takes a CSS file and provides an API to analyze and modify its rules
  14. (by transforming them into an [Abstract Syntax Tree]).
  15. This API can then be used by [plugins] to do a lot of useful things,
  16. e.g., to find errors automatically, or to insert vendor prefixes.
  17. **Support / Discussion:** [Gitter](https://gitter.im/postcss/postcss)<br>
  18. **Twitter account:** [@postcss](https://twitter.com/postcss)<br>
  19. **VK.com page:** [postcss](https://vk.com/postcss)<br>
  20. **中文翻译**: [`docs/README-cn.md`](./docs/README-cn.md)
  21. For PostCSS commercial support (consulting, improving the front-end culture
  22. of your company, PostCSS plugins), contact [Evil Martians]
  23. at <postcss@evilmartians.com>.
  24. [Abstract Syntax Tree]: https://en.wikipedia.org/wiki/Abstract_syntax_tree
  25. [Evil Martians]: https://evilmartians.com/?utm_source=postcss
  26. [Autoprefixer]: https://github.com/postcss/autoprefixer
  27. [plugins]: https://github.com/postcss/postcss#plugins
  28. <a href="https://evilmartians.com/?utm_source=postcss">
  29. <img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
  30. alt="Sponsored by Evil Martians" width="236" height="54">
  31. </a>
  32. ## Docs
  33. Read **[full docs](https://github.com/postcss/postcss#readme)** on GitHub.