uniapp button的部分边框显示不出来

292 阅读1分钟

在项目中使用了 flex 后右侧边框消失了:

display: flex;
justify-content: space-between;
align-items: center;

效果:

image.png

原因:溢出被隐藏

解决:

button{
    overflow: visible;
}

image.png

来源链接:blog.csdn.net/wulala_Spon…