Détail du package

postcss-nth-child-fix

mattdimu6.9kMIT2.0.0

PostCSS plugin to fix a known android bug with nth-child (safe).

postcss, css, postcss-plugin, nth-child

readme

PostCSS Nth Child Fix Build Status

PostCSS plugin to fix a known android 4.1 and 4.2 bug with nth-child (safe transformation).

/* input */
.foo:nth-child(n) {
    color: blue;
}

/* output */ 
.foo:nth-child(1n) {
    color: blue;
}

Usage

postcss([ require('postcss-nth-child-fix') ])

See PostCSS docs for examples for your environment.

changelog

2.0

  • use postcss 6.x

1.0

  • initial release