项目原始demo,不改动
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

123456789101112131415161718192021222324252627282930313233
  1. # postcss-minify-params [![Build Status][ci-img]][ci]
  2. > Minify at-rule params with PostCSS.
  3. ```css
  4. @media only screen and ( min-width: 400px, min-height: 500px ) {
  5. h2{
  6. color:blue
  7. }
  8. }
  9. ```
  10. ```css
  11. @media only screen and (min-width:400px,min-height:500px) {
  12. h2{
  13. color:blue
  14. }
  15. }
  16. ```
  17. ## Usage
  18. ```js
  19. postcss([ require('postcss-minify-params') ])
  20. ```
  21. See [PostCSS] docs for examples for your environment.
  22. MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
  23. [PostCSS]: https://github.com/postcss/postcss
  24. [ci-img]: https://travis-ci.org/ben-eb/postcss-minify-params.svg
  25. [ci]: https://travis-ci.org/ben-eb/postcss-minify-params