UNPKG

782 BMarkdownView Raw
1# postcss-minify-params [![Build Status][ci-img]][ci]
2
3> Minify at-rule params with PostCSS.
4
5```css
6@media only screen and ( min-width: 400px, min-height: 500px ) {
7 h2{
8 color:blue
9 }
10}
11```
12
13```css
14@media only screen and (min-width:400px,min-height:500px) {
15 h2{
16 color:blue
17 }
18}
19```
20
21## Usage
22
23```js
24postcss([ require('postcss-minify-params') ])
25```
26
27See [PostCSS] docs for examples for your environment.
28
29## Contributors
30
31See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
32
33## License
34
35MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
36
37[PostCSS]: https://github.com/postcss/postcss
38[ci-img]: https://travis-ci.org/cssnano/postcss-minify-params.svg
39[ci]: https://travis-ci.org/cssnano/postcss-minify-params