div.wrap, div.item 绝对定位结合
margin: auto
,不需要提前知道尺寸,兼容性好。
[transform在 Opera Mini 中完全不支持。]
.container {
position: relative;
height: 300px;
}
.item {
width: 100px;
height: 50px;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto;
}