微信小程序居中、居右、横纵布局
1、相对父类控件水平垂直居中
方式一:水平垂直居中
父类控件:
display: flex;
align-items: center;//子控件垂直居中
justify-content: center;//子控件水平居中
width: 100%;
height: 400px
//注意:这里的 height 写 100%会使得垂直居中可能会不生效
<
微信小程序居中、居右、横纵布局
父类控件:
display: flex;
align-items: center;//子控件垂直居中
justify-content: center;//子控件水平居中
width: 100%;
height: 400px
//注意:这里的 height 写 100%会使得垂直居中可能会不生效
<