微信小程序水平居中或垂直居中

作者:outlela  来源:本站原创   发布时间:2021-7-2 16:29:41

一、水平居中


1、排列方向为水平方向

.father{
display: flex;
align-items: center;
}


2、排列方向为竖直方向

.father{
display: flex;
flex-direction: column;
align-items: center;
}


二、垂直居中

1、排列方向为水平方向

.father{
display: flex;
flex-direction:column;
justify-content: center;
}

2、排列方向为竖直方向

.father{
display: flex;
justify-content: center;
}


三、中心居中


1、排列方向为水平方向

.father{
display: flex;
align-items: center;
justify-content: center;
}


2、排列方向为竖直方向

.father{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}


*本文最后修改于:2021-7-2 16:34:8
本文标签: 微信 小程序 水平居中 垂直居中
本文由本站原创发布, 本文链接地址:https://outlela.com/Code/130.html
转载或引用请保留地址并注明出处:outlela.com