app -webkit-box-orient: vertical 打包后不显示

 

先说明问题是什么:

-webkit-box-orient: vertical 这个属性在本地运行调试是存在的,但是打包后这个属性消失了;

解决办法:

1.将-webkit-box-orient: vertical改成下面效果;

/*! autoprefixer: off */
-webkit-box-orient: vertical;
/* autoprefixer: on */
 
2.在行内添加 -webkit-box-orient: vertical;
 
当然,解决方法还有其他的,这两种只是我经过测试可以实现效果的方法,记录下来方便日后查看!

猜你喜欢

转载自www.cnblogs.com/Joun-wang/p/9243786.html
今日推荐