如果您愿意,请访问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;
}
谢谢