Closed roubaobaozi closed 8 years ago
transition
without prefixes is supported in all modern browsers while transform
isn't yet: http://caniuse.com/#feat=transforms2d
You're using the default browsers list (>1%, last 2 versions), so iOS Safari and Android 4.4.4 are included. Check out live Autoprefixer tool here https://autoprefixer.github.io/ if you want to experiment with browsers list.
And you can't just put all prefixed properties with prefixed values in one line as some browsers versions support unprefixed transition
, but not transform
. Hope it helps.
Oh, so it IS meant to be like that, okay great, thanks :)
I was staring at it thinking something must be wrong ...
Hi,
I have autoprefixer running on the following code:
transition: transform .3s, color .3s;
It is outputting:
But shouldn't it be outputting this?
My postcss settings are:
I have no idea if I'm doing anything wrong, if it's outputting incorrectly, or if it's actually correct.
Thanks