https://github.com/csstools/postcss-unnth
Replace :nth-child selectors with :first-child+ selectors
https://github.com/csstools/postcss-unnth
Last synced: about 1 year ago
JSON representation
Replace :nth-child selectors with :first-child+ selectors
- Host: GitHub
- URL: https://github.com/csstools/postcss-unnth
- Owner: csstools
- License: other
- Archived: true
- Created: 2015-10-05T13:23:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-12-09T16:53:53.000Z (over 4 years ago)
- Last Synced: 2025-04-21T21:37:59.907Z (about 1 year ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 2
- Watchers: 4
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# UnNth [![Build Status][ci-img]][ci]

[UnNth] replaces `:nth-child` selectors with `:first-child` selectors. This can be useful when outputting CSS for older browsers like Internet Explorer 8.
```css
/* before */
.container > p:nth-child(4).specific > span {
font-weight: bold;
}
/* after */
.container > :first-child + * + * + p.specific > span {
font-weight: bold;
}
```
## Usage
Add [UnNth] to your build tool:
```bash
npm install postcss-unnth --save-dev
```
#### Node
```js
require('postcss-unnth')({ /* options */ }).process(YOUR_CSS);
```
#### PostCSS
Add [PostCSS] to your build tool:
```bash
npm install postcss --save-dev
```
Load [UnNth] as a PostCSS plugin:
```js
postcss([
require('postcss-unnth')({ /* options */ })
]);
```
#### Gulp
Add [Gulp PostCSS] to your build tool:
```bash
npm install gulp-postcss --save-dev
```
Enable [UnNth] within your Gulpfile:
```js
var postcss = require('gulp-postcss');
gulp.task('css', function () {
return gulp.src('./css/src/*.css').pipe(
postcss([
require('postcss-unnth')({ /* options */ })
])
).pipe(
gulp.dest('./css')
);
});
```
#### Grunt
Add [Grunt PostCSS] to your build tool:
```bash
npm install grunt-postcss --save-dev
```
Enable [UnNth] within your Gruntfile:
```js
grunt.loadNpmTasks('grunt-postcss');
grunt.initConfig({
postcss: {
options: {
processors: [
require('postcss-unnth')({ /* options */ })
]
},
dist: {
src: 'css/*.css'
}
}
});
```
[ci]: https://travis-ci.org/jonathantneal/postcss-unnth
[ci-img]: https://travis-ci.org/jonathantneal/postcss-unnth.svg
[Gulp PostCSS]: https://github.com/postcss/gulp-postcss
[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss
[PostCSS]: https://github.com/postcss/postcss
[UnNth]: https://github.com/jonathantneal/postcss-unnth