1、上下居中(垂直居中)
style=“height: 40px;
background-color: #FFFFFF;
display: flex;
flex-direction: row;
align-items: center;
2、左右居中(水平居中)
style=“height: 40px;
background-color: #FFFFFF;
display: flex;
flex-direction: row;
justify-content: center;
3、左右居中(水平居中)
display: flex;
flex-direction: column;
align-items: center;
————————————————