项目原始demo,不改动
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # [postcss][postcss]-ordered-values [![Build Status](https://travis-ci.org/ben-eb/postcss-ordered-values.svg?branch=master)][ci] [![NPM version](https://badge.fury.io/js/postcss-ordered-values.svg)][npm] [![Dependency Status](https://gemnasium.com/ben-eb/postcss-ordered-values.svg)][deps]
  2. > Ensure values are ordered consistently in your CSS.
  3. ## Install
  4. With [npm](https://npmjs.org/package/postcss-ordered-values) do:
  5. ```
  6. npm install postcss-ordered-values --save
  7. ```
  8. ## Example
  9. Some CSS properties accept their values in an arbitrary order; for this reason,
  10. it is entirely possible that different developers will write their values in
  11. different orders. This module normalizes the order, making it easier for other
  12. modules to understand which declarations are duplicates.
  13. ### Input
  14. ```css
  15. h1 {
  16. border: solid 1px red;
  17. border: red solid .5em;
  18. border: rgba(0, 30, 105, 0.8) solid 1px;
  19. border: 1px solid red;
  20. }
  21. ```
  22. ### Output
  23. ```css
  24. h1 {
  25. border: 1px solid red;
  26. border: .5em solid red;
  27. border: 1px solid rgba(0, 30, 105, 0.8);
  28. border: 1px solid red;
  29. }
  30. ```
  31. ## Support List
  32. For more examples, see the [tests](src/__tests__/index.js).
  33. * `border(border-left|right|top|bottom)`
  34. * `box-shadow`
  35. * `outline`
  36. * `flex-flow`
  37. * `transition`, `-webkit-transition`
  38. ## Usage
  39. See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
  40. examples for your environment.
  41. ## Contributors
  42. Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
  43. <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
  44. | [<img src="https://avatars.githubusercontent.com/u/1282980?v=3" width="100px;"/><br /><sub>Ben Briggs</sub>](http://beneb.info)<br />[💻](https://github.com/ben-eb/postcss-ordered-values/commits?author=ben-eb) [📖](https://github.com/ben-eb/postcss-ordered-values/commits?author=ben-eb) 👀 [⚠️](https://github.com/ben-eb/postcss-ordered-values/commits?author=ben-eb) | [<img src="https://avatars.githubusercontent.com/u/2784308?v=3" width="100px;"/><br /><sub>一丝</sub>](www.iyunlu.com/view)<br />[💻](https://github.com/ben-eb/postcss-ordered-values/commits?author=yisibl) [⚠️](https://github.com/ben-eb/postcss-ordered-values/commits?author=yisibl) | [<img src="https://avatars.githubusercontent.com/u/5635476?v=3" width="100px;"/><br /><sub>Bogdan Chadkin</sub>](https://github.com/TrySound)<br />[💻](https://github.com/ben-eb/postcss-ordered-values/commits?author=TrySound) [⚠️](https://github.com/ben-eb/postcss-ordered-values/commits?author=TrySound) | [<img src="https://avatars.githubusercontent.com/u/497260?v=3" width="100px;"/><br /><sub>Ambroos Vaes</sub>](https://github.com/Ambroos)<br />[🐛](https://github.com/ben-eb/postcss-ordered-values/issues?q=author%3AAmbroos) |
  45. | :---: | :---: | :---: | :---: |
  46. <!-- ALL-CONTRIBUTORS-LIST:END -->
  47. This project follows the [all-contributors] specification. Contributions of
  48. any kind welcome!
  49. ## License
  50. MIT © [Ben Briggs](http://beneb.info)
  51. [all-contributors]: https://github.com/kentcdodds/all-contributors
  52. [ci]: https://travis-ci.org/ben-eb/postcss-ordered-values
  53. [deps]: https://gemnasium.com/ben-eb/postcss-ordered-values
  54. [npm]: http://badge.fury.io/js/postcss-ordered-values
  55. [postcss]: https://github.com/postcss/postcss