Urara-Blog/node_modules/.pnpm-store/v3/files/9d/f9f68f3e6c9ddcef9eac24d4fff90bfeb111b14dad4f227624af724ee2f8555a7cd9cbda6c4d4c1f8f0c518ad0a91a647e587a92665fb4e939d710246220de
2022-08-14 01:14:53 +08:00

44 lines
710 B
Text

# [postcss][postcss]-normalize-whitespace
> Normalize whitespace with PostCSS.
## Install
With [npm](https://npmjs.org/package/postcss-normalize-whitespace) do:
```
npm install postcss-normalize-whitespace --save
```
## Example
### Input
```css
h1{
width: calc(10px - ( 100px / var(--test) ))
}
```
### Output
```css
h1{
width: calc(10px - 100px / var(--test))
}
```
## 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