Q12-如何让一个div在父元素中上下左右居中

方法1:【绝对定位50% - 本身50%】

             position:absolute; 

             left:50%;

             top:50%;

             transform: translate(-50%,-50%);


方法2:【绝对定位 left: 0 right: 0 top: 0 bottom: 0 margin: auto】

方法3:和方法1类似,【绝对定位50% - 本身50%】

你可能感兴趣的:(Q12-如何让一个div在父元素中上下左右居中)