MIF_E31222707/node_modules/postcss-merge-longhand
adeliaala 0d288a48b9 done 2025-07-15 13:57:20 +07:00
..
src done 2025-07-15 13:57:20 +07:00
types done 2025-07-15 13:57:20 +07:00
LICENSE-MIT done 2025-07-15 13:57:20 +07:00
README.md done 2025-07-15 13:57:20 +07:00
package.json done 2025-07-15 13:57:20 +07:00

README.md

postcss-merge-longhand

Merge longhand properties into shorthand with PostCSS.

Install

With npm do:

npm install postcss-merge-longhand --save

Example

Merge longhand properties into shorthand; works with margin, padding & border. For more examples see the tests.

Input

h1 {
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom: 10px;
    margin-left: 20px;
}

Output

h1 {
    margin: 10px 20px;
}

Usage

See the PostCSS documentation for examples for your environment.

Contributors

See CONTRIBUTORS.md.

License

MIT © Ben Briggs