Sha256: 95d1d9546acd6005f719d011c86bc4e3e43d3e21b7bdacfe032d77fe6e10875f

Contents?: true

Size: 700 Bytes

Versions: 26

Compression:

Stored size: 700 Bytes

Contents

# [postcss][postcss]-unique-selectors

> Ensure CSS selectors are unique.

## Install

With [npm](https://npmjs.org/package/postcss-unique-selectors) do:

```
npm install postcss-unique-selectors --save
```

## Example

Selectors are sorted naturally, and deduplicated:

### Input

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

### Output

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

## 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

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
ezii-os-5.2.1 node_modules/postcss-unique-selectors/README.md
ezii-os-2.0.1 node_modules/postcss-unique-selectors/README.md
ezii-os-1.1.0 node_modules/postcss-unique-selectors/README.md
ezii-os-1.0.0 node_modules/postcss-unique-selectors/README.md
ezii-os-0.0.0.1.0 node_modules/postcss-unique-selectors/README.md
ezii-os-0.0.0.0.1 node_modules/postcss-unique-selectors/README.md