1.0.4 • Published 9 years ago
postcss-z v1.0.4
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-zThen include the plugin:
postcss([require('postcss-z')(options)])See PostCSS docs for examples for your environment.
Licence
Released under the MIT license.