PostCSS is an open source text markup language created in 2013 by Andrey Sitnik.
| #144on PLDB | 13Years Old | 0Repos |
git clone https://github.com/postcss/postcssTransforming styles with JS plugins
body::before {
content: "Hello World";
}@define-mixin size $size {
width: $size;
}
$big: 100px;
/* Main block */
.block {
&_logo {
background: inline("./logo.png");
@mixin size $big;
}
}| Feature | Supported | Example | Token |
|---|---|---|---|
| Strings | ✓ | "Hello world" | " |
| Comments | ✓ | /* A comment */ | |
| MultiLine Comments | ✓ | /* A comment */ | /* */ |
| Semantic Indentation | X |