In Opera, it seems that the height of display: table is wrong. In the following example, the outer height of the div is 100px, while it should be 160px:
#a1 {
background-color: #66f;
padding: 30px;
height: 100px;
width: 100px;
display: table;
}
<div id="a1"></div>
Looks like old box model of IE? But IE7/8 works OK in this case.
Feel free to play with http://jsfiddle.net/mpGqU/