标签:content 遇到 自动 space 上下文 排查 button pre 解决
当小程序的flex布局遇到button时 发现justify-content不起作用,无论怎么设置都是space-around的效果。
经过排查,发现原因是小程序button中的默认样式中的margin-left: auto;margin-right: auto;所引起的 覆盖掉就好了
flex 格式化上下文中,在通过 justify-content 和 align-self 进行对齐之前,任何正处于空闲的空间都会分配到该方向的自动 margin 中去。参考自探秘 flex 上下文中神奇的自动 margin
.button{margin:0}
当小程序的flex布局遇到button时,justify-content不起作用的原因及解决方案
标签:content 遇到 自动 space 上下文 排查 button pre 解决
原文地址:https://www.cnblogs.com/wlor/p/13093660.html