PostCSS is an open source text markup language created in 2013 by Andrey Sitnik.
#139on PLDB | 11Years Old | 0Repos |
git clone https://github.com/postcss/postcss
Transforming 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 |