标签:分享 acl image 垂直居中 center images height ges display
首先在img标签外面加一层div:
例如:
html:
<div class="imgbox">
<img src="" />
</div>
首先div给一个固定的高宽,具体如下
css:
.imgbox{
height:100px;
width:100px;
display:table-cell;
vertiacl-align:middle;
text-align:center;
padding:5px;
border:1px solid #ccc;
}
.imgbox img{
max-height:100%;
max-width:100%;
}
效果图如下:有点丑,土色的代表img,黑色的代表div
标签:分享 acl image 垂直居中 center images height ges display
原文地址:http://www.cnblogs.com/sgzg/p/6913865.html