-webkit-box-orient 样式无效

问题:

同事遇一问题,说代码打包后,说在文件中的样式,如:

-webkit-box-orient: vertical;

在浏览器中没生效,审查元素也没有此样式,后经查看原来是autoprefixer的问题。

 

解决办法:

/* autoprefixer: off */-webkit-box-orient: vertical;

 

issues:

https://github.com/postcss/autoprefixer/issues/776

相关文章