重複の可能性:
テーブル属性の最小幅と最大高さ
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 は私の固定高さを無視して、ここに見られるように大きくします。
アイデア?:)