movii
6/24/2017 - 6:04 AM

笔记:前端开发中的「居中」,绝对定位,transform 和 flex 布局:5. CSS 中的 transform 属性

笔记:前端开发中的「居中」,绝对定位,transform 和 flex 布局:5. CSS 中的 transform 属性

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

.box.box_centerByFlex .content {
 align-self: center;
}