PostCSS Place Properties
PostCSS Place Properties lets you use place-* properties as shorthands for align-* and justify-*, following the CSS Box Alignment specification.
.example {
place-self: center;
place-content: space-between center;
}
/* becomes */
.example {
align-self: center;
justify-self: center;
place-self: center;
align-content: space-between;
justify-content: center;
place-content: space-between center;
}Usage
Add PostCSS Place Properties to your project:
Use PostCSS Place Properties to process your CSS:
Or use it as a PostCSS plugin:
PostCSS Place Properties runs in all Node environments, with special instructions for:
Options
preserve
The preserve option determines whether the original place declaration is preserved. By default, it is preserved.
Last updated
Was this helpful?