1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/postcss-unique-selectors
詹力 1a19ec897f 删除无关模块 2024-01-16 21:26:16 +08:00
..
dist i4 2023-12-18 13:12:25 +08:00
node_modules 删除无关模块 2024-01-16 21:26:16 +08:00
CHANGELOG.md i4 2023-12-18 13:12:25 +08:00
LICENSE-MIT i4 2023-12-18 13:12:25 +08:00
README.md i4 2023-12-18 13:12:25 +08:00
package.json 删除无关模块 2024-01-16 21:26:16 +08:00

README.md

postcss-unique-selectors

Ensure CSS selectors are unique.

Install

With npm do:

npm install postcss-unique-selectors --save

Example

Selectors are sorted naturally, and deduplicated:

Input

h1,h3,h2,h1 {
    color: red
}

Output

h1,h2,h3 {
    color: red
}

Usage

See the PostCSS documentation for examples for your environment.

Contributors

See CONTRIBUTORS.md.

License

MIT © Ben Briggs