UNPKG

882 BMarkdownView Raw
1# [postcss][postcss]-merge-longhand
2
3> Merge longhand properties into shorthand with PostCSS.
4
5## Install
6
7With [npm](https://npmjs.org/package/postcss-merge-longhand) do:
8
9```
10npm install postcss-merge-longhand --save
11```
12
13## Example
14
15Merge longhand properties into shorthand; works with `margin`, `padding` &
16`border`. For more examples see the [tests](src/__tests__/index.js).
17
18### Input
19
20```css
21h1 {
22 margin-top: 10px;
23 margin-right: 20px;
24 margin-bottom: 10px;
25 margin-left: 20px;
26}
27```
28
29### Output
30
31```css
32h1 {
33 margin: 10px 20px;
34}
35```
36
37## Usage
38
39See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for
40examples for your environment.
41
42## Contributors
43
44See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
45
46## License
47
48MIT © [Ben Briggs](http://beneb.info)
49
50[postcss]: https://github.com/postcss/postcss