父盒子采用相對定位,子盒子絕對定位
css代碼如下:
.bbb{
position: relative;
text-align: center;
background-color: #f9f9fb !important;
}
.bbb img{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin:auto;
}
html代碼如下:
<div class="bbb">
<img src="img/ios/圖層9@2x.png" alt="">
</div>

