1.0.4 • Published 8 years ago

postcss-z v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

postcss-z Build Status

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.