css实现图片大小自适应且上下左右居中
css:
#img_body {
width: 130px;
height: 150px;
text-align: center;
position: relative;
}
#img_body img {
max-height: 100%;
max-width: 100%;
position: absolute;
top: 0px;
bottom: 0px;
margin: auto;
left: 0px;
right: 0px;
}
html:
<div id="img_body">
<img>
</div>