标签:ems pre 设置 justify idt ott color img fat
#### 适用于父盒子为块级元素(div)、子盒子为块级元素(div);父盒子为块级元素(div)、子盒子为行内块元素(span);父盒子为块级元素(div)、子盒子为内联元素(img);
.father {
height: 500px;
width: 500px;
background-color: pink;
<!--方法一:给父级元素添加flex-->
display: flex;
justify-content: center;
align-items: center;
<!--方法二:给父级元素添加table-cell-->
display: table-cell;
vertical-align: middle;
text-align: center;
}
.sun {
<!--父绝子相,给子元素添加相对定位,先把top、bottom、left、right设置为0;然后直接使用margin:auto;-->
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
标签:ems pre 设置 justify idt ott color img fat
原文地址:https://www.cnblogs.com/xjt31/p/12967850.html