我在我的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忽略了我固定的高度并使其变大,如图所示
想法? :)
答案 0 :(得分:5)
看看这个答案,我想这会为你解决问题。 Min-width and max-height for table attributes
和W3的最大高度,而不是该答案中定义的最大宽度。 http://www.w3.org/TR/CSS21/visudet.html#propdef-max-height
在CSS 2.1中,'min-height'和'max-height'对表,内联表,表格单元格,表格行和行组的影响是未定义的。