如何让元素垂直居中和水平居中

/*flex 布局*/
display: flex;
/*实现垂直居中*/
align-items: center;
/*实现水平居中*/
justify-content: center;
效果图

你可能感兴趣的:(如何让元素垂直居中和水平居中)