直接利用css居中
.css_center {
width: 90px;
height: 160px;
border: 1px dashed #333;
display: table-cell;
vertical-align: middle;
text-align: center;
}
<div class="css_center">
<img src="img/赵四.jpg" alt="" height="64" width="36">
</div>
利用css中background属性
.css_center {
width: 1500px;
height: 2000px;
border: 1px dashed #333;
background: url(img/赵四.jpg) no-repeat center;
}
<div class="css_center"></div>