movii
6/24/2017 - 5:58 AM

笔记:前端开发中的「居中」,绝对定位,transform 和 flex 布局:4. 相对绝对定位

笔记:前端开发中的「居中」,绝对定位,transform 和 flex 布局:4. 相对绝对定位

/* center by traditional relative/absolute position */
/* parent */
.box.box_centerByAbsolute {
 position: relative;
}

/* child */
.box.box_centerByAbsolute .content {
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 margin: auto;
}