source: trip-planner-front/node_modules/postcss-normalize-repeat-style/README.md@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 715 bytes
Line 
1# [postcss][postcss]-normalize-repeat-style
2
3> Normalize repeat styles with PostCSS.
4
5## Install
6
7With [npm](https://npmjs.org/package/postcss-normalize-repeat-style) do:
8
9```
10npm install postcss-normalize-repeat-style --save
11```
12
13## Example
14
15### Input
16
17```css
18h1 {
19 background: url(image.jpg) repeat no-repeat
20}
21```
22
23### Output
24
25```css
26h1 {
27 background: url(image.jpg) repeat-x
28}
29```
30
31## Usage
32
33See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
34examples for your environment.
35
36## Contributors
37
38See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
39
40## License
41
42MIT © [Ben Briggs](http://beneb.info)
43
44[postcss]: https://github.com/postcss/postcss
Note: See TracBrowser for help on using the repository browser.