UNPKG

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