postcss-z
v1.0.4
Published
A PostCSS plugin to replace z with z-index.
Downloads
5
Maintainers
Readme
postcss-z
A PostCSS plugin to replace z with z-index.
Example
Input:
.blackbriar {
z: 1;
}
Output:
.blackbriar {
z-index: 1;
}
Usage
Install:
npm i -D postcss-z
Then include the plugin:
postcss([require('postcss-z')(options)])
See PostCSS docs for examples for your environment.
Licence
Released under the MIT license.