You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
715 B

4 years ago
  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