An open API service indexing awesome lists of open source software.

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

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