项目原始demo,不改动
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

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