绝对垂直中心在FireFox中不起作用

时间:2014-09-10 19:58:27

标签: css image firefox positioning

我的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不支持这种方法吗?

Fiddle

0 个答案:

没有答案