我的CSS中有以下代码
.box {
position: relative;
min-height: 113px;
overflow: hidden;
border: 1px solid #ccc;
}
.box img {
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
margin: auto;
min-width: 202px;
width: 100%;
height:auto;
}
<div class="box">image goes here</div>
出于某种原因,这适用于Chrome,Safari和IE ....但在Firefox中,图像不会集中在其“BOX”容器中。
firefox不支持这种方法吗?