523f0a1b7bbcb279c61e56be87be880dab3284e0f81738c0b18d23ee897db77bf750f29feaeb0bd3bf328f4a454011f158a4a38b65f885b21185f6fb0b9da6 715 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # [postcss][postcss]-normalize-repeat-style
  2. > Normalize repeat styles with PostCSS.
  3. ## Install
  4. With [npm](https://npmjs.org/package/postcss-normalize-repeat-style) do:
  5. ```
  6. npm install postcss-normalize-repeat-style --save
  7. ```
  8. ## Example
  9. ### Input
  10. ```css
  11. h1 {
  12. background: url(image.jpg) repeat no-repeat
  13. }
  14. ```
  15. ### Output
  16. ```css
  17. h1 {
  18. background: url(image.jpg) repeat-x
  19. }
  20. ```
  21. ## Usage
  22. See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
  23. examples for your environment.
  24. ## Contributors
  25. See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
  26. ## License
  27. MIT © [Ben Briggs](http://beneb.info)
  28. [postcss]: https://github.com/postcss/postcss