1.0.1 • Published 9 years ago

postcss-minify-trbl v1.0.1

Weekly downloads
55
License
MIT
Repository
github
Last release
9 years ago

postcss-minify-trbl Build Status NPM version Dependency Status

Minify top/right/bottom/left values.

Install

With npm do:

npm install postcss-minify-trbl --save

Example

This module will reduce top/right/bottom/left values where possible:

Input

h1 {
    margin: 10px 20px 10px 20px;
}

Output

h1 {
    margin: 10px 20px;
}

Usage

See the PostCSS documentation for examples for your environment.

Contributing

Pull requests are welcome. If you add functionality, then please add unit tests to cover it.

License

MIT © Ben Briggs