0

如果您愿意,请访问http://debourg-dev.ch/syselcloud/erp-rh/,您会看到在 firefox 和 opera 中,图像没有使用 max-height 属性。这是因为我使用 display:table-cell 来垂直对齐它们,如果我删除 display: table-cell 它工作正常。如何将这些图像与 display: table-cell 垂直对齐并让 firefox 和 opera 使用正确的 max-height 值?

相关代码为:

.partenaire-logo-wrap {
height: 110px;
text-align: center;
vertical-align: middle;
display: table-cell;
}

.partenaire-logo-wrap img {
max-height: 90px;
}

谢谢

4

1 回答 1

0
.partenaire-logo-wrap img {
max-height: 90px;
-moz-height:90px;
-o-height:90px;
}

如果您想查看此帖子,我将从此处获取此信息

Firefox 中忽略的最大高度,适用于 Chrome 和 Safari

于 2012-10-29T19:07:50.147 回答