1.0.0 • Published 8 years ago

postcss-not-x-child v1.0.0

Weekly downloads
24
License
MIT
Repository
github
Last release
8 years ago

PostCSS :not-X-child Build Status

PostCSS plugin transform :not-first-child and :not-last-child to :not(:first-child) and :not(:last-child).

Input:

div:not-first-child {
}
div:not-last-child {
}

Output:

div:not(:first-child) {
}
div:not(:last-child) {
}

Usage

postcss([ require('postcss-not-x-child') ])

See PostCSS docs for examples for your environment.