我对运行 autoprefixer 的 postcss 感到不满,并且代码:
transition: transform .3s, color .3s;
...正在输出:
transition: color .3s, -webkit-transform .3s;
transition: transform .3s, color .3s;
transition: transform .3s, color .3s, -webkit-transform .3s;
但它不应该输出这个吗?
-webkit-transition: -webkit-transform .3s, color .3s;
transition: transform .3s, color .3s;
我的 postcss 设置是:
postcss: {
options: {
map: {
inline: false, // save all sourcemaps as separate files...
annotation: '../css/' // ...to the specified directory
},
processors: [
require('autoprefixer')({browsers: 'last 2 versions'}), // add vendor prefixes
]
},
dist: {
src: '../css/*.css'
}
}
我不知道我是否做错了什么,是否输出不正确,或者它实际上是否正确。
谢谢