Caniuse: -webkit-box-orient is not found

Created on 12 May 2017  ·  5Comments  ·  Source: Fyrd/caniuse

Support data suggestion

Most helpful comment

@zhulin2609 我也忘了我为什么说了这句话 😄


想起来了 autoprefixer 会将 -webkit-box-orient 移除,因为 autoprefixer 的工作原理是查阅 caniuse 的结果。

但有时候又需要这个属性,就需要配置一下 autoprefixer 来跳过

/* autoprefixer: off */
// 关闭的原因是编译会丢失 -webkit-box-orient
-webkit-box-orient: vertical;
/* autoprefixer: on */

All 5 comments

-webkit-box-orient is removed in autoprefixer compiled file

@uni-zheng why?

@zhulin2609 我也忘了我为什么说了这句话 😄


想起来了 autoprefixer 会将 -webkit-box-orient 移除,因为 autoprefixer 的工作原理是查阅 caniuse 的结果。

但有时候又需要这个属性,就需要配置一下 autoprefixer 来跳过

/* autoprefixer: off */
// 关闭的原因是编译会丢失 -webkit-box-orient
-webkit-box-orient: vertical;
/* autoprefixer: on */

@uni-zheng 多谢,我觉得这个issue可以关掉了。

所以 这个 -webkit-box-orient 会不会新增 , Can I use 差不到

Was this page helpful?
0 / 5 - 0 ratings