Urara-Blog/node_modules/.pnpm-store/v3/files/34/523f0a1b7bbcb279c61e56be87be880dab3284e0f81738c0b18d23ee897db77bf750f29feaeb0bd3bf328f4a454011f158a4a38b65f885b21185f6fb0b9da6
2022-08-14 01:14:53 +08:00

44 lines
715 B
Text

# [postcss][postcss]-normalize-repeat-style
> Normalize repeat styles with PostCSS.
## Install
With [npm](https://npmjs.org/package/postcss-normalize-repeat-style) do:
```
npm install postcss-normalize-repeat-style --save
```
## Example
### Input
```css
h1 {
background: url(image.jpg) repeat no-repeat
}
```
### Output
```css
h1 {
background: url(image.jpg) repeat-x
}
```
## Usage
See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
examples for your environment.
## Contributors
See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
## License
MIT © [Ben Briggs](http://beneb.info)
[postcss]: https://github.com/postcss/postcss