PostCSS is a text markup language created in 2013.
#217on PLDB | 10Years Old | 31.1kUsers |
0Books | 0Papers | 0Repos |
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 | Token | Example |
---|---|---|---|
Strings | ✓ | " | "Hello world" |
Comments | ✓ | /* A comment */ |
|
MultiLine Comments | ✓ | /* */ | /* A comment */ |
Semantic Indentation | X |