github postcss/autoprefixer 6.4.0
6.4 “Hic et ubique terrarum”

latest releases: 10.4.19, 10.4.18, 10.4.17...
7 years ago

Coat of arms of University of Paris

Autoprefixer 6.4 brings :any-link and text-decoration-skip support.

New Support

New Autoprefixer will compile:

:any-link {
    text-decoration-skip: ink;
}

to:

:-webkit-any-link {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
}
:-moz-any-link {
  text-decoration-skip: ink;
}
:any-link {
  -webkit-text-decoration-skip: ink.;
          text-decoration-skip: ink;
}

Transition

Autoprefixer 6.4 support reverse parameters in transition:

.foo {
    transition: 200ms color;
}

Also we fix transition prefixing in Opera 12.

Other

  • Fix -webkit- prefix for backface-visibility.
  • Fix rad unit support in gradients (by @gucong3000).
  • Removed Safari TP Grid prefixes support.

Don't miss a new autoprefixer release

NewReleases is sending notifications on new releases.