问题:
同事遇一问题,说代码打包后,说在文件中的样式,如:
-webkit-box-orient: vertical;
在浏览器中没生效,审查元素也没有此样式,后经查看原来是autoprefixer的问题。
解决办法:
/* autoprefixer: off */-webkit-box-orient: vertical;
issues:
https://github.com/postcss/autoprefixer/issues/776
-webkit-box-orient 样式无效
原文地址:https://www.cnblogs.com/ccbabi/p/10141930.html