flex实现上下左右居中

display: flex;
flex-direction: row; /* 子元素横向排列 */
justify-content: center; /* 相对父元素水平居中 */
align-items: center;

你可能感兴趣的:(HTML5,前端)