0

可能重复:
表格属性的最小宽度和最大高度

我在我的CSS中设置了一个高度

.entry, p{
display: table-cell;
vertical-align: middle;
padding: 2px;
font-size: 13pt;
margin: 0px;
}
.entry{
    float: left;
    color: white;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #3c3838;
    width: auto;
    margin: 5px; 
    height: 52px;
    max-height: 52px;
    display: table;
    overflow: auto;
    font-size: 13pt;
    font-weight: normal;
}

但可悲的是,Opera 忽略了我的固定高度并使其变大,如此处所示

在此处输入图像描述

想法?:)

4

1 回答 1

5

看看这个答案,我想这会为你解决问题。 表格属性的最小宽度和最大高度

和 W3 的最大高度,而不是该答案中定义的最大宽度。 http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height

在 CSS 2.1 中,'min-height' 和 'max-height' 对表格、内联表格、表格单元格、表格行和行组的影响是未定义的。

于 2012-08-25T23:16:31.050 回答