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 forbackface-visibility
. - Fix
rad
unit support in gradients (by @gucong3000). - Removed Safari TP Grid prefixes support.