我有一些scss代码,运行npm run watch
或npm run prod
后,某些代码,例如-webkit-flex-direction: column;
将会丢失。
这是一个示例:
.box{
flex-direction: column;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
}
运行npm run watch
或npm run prod
后,它将是:
.box{
flex-direction: column;
-moz-flex-direction: column;
}
如何在已编译的CSS上使用-webkit-flex-direction: column;
或-ms-flex-direction: column;
?