外观
.parent {
position: relative;
display: block;
.img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}.parent {
display: table-cell;
// width要写得大一点,以撑满容器之外部容易的宽度
width: 3000px;
text-align: center;
vertical-align: middle;
.img {
display: inline-block;
vertical-align: middle;
}
}.parent {
display: block;
text-align: center;
height: 300px;
line-height: 300px;
.img {
display: inline-block;
}
}.parent {
display: block;
height: 400px;
.img {
display: block;
height: 100px;
margin: 150px auto 0;
}
}.parent {
position: relative;
display: block;
width: 600px;
height: 400px;
.img {
position: absolute;
width: 100px;
height: 300px;
top: 50px;
left: 250px;
}
}.parent {
display: inline-block; // 包围内部元素
.img {
padding: 30px 20px; // 用来加大父元素的尺寸
}
}.parent {
display: block;
height: 300px;
background: transparent url('./img/beauty.png') scroll no-repeat center center;
background-size: 100px 200px;
}.parent {
display: flex;
align-items: center;
justify-content: center;
}