bekacodechn
5/13/2019 - 12:03 PM

cssCenter.md

水平、垂直居中,兼容性好

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;
}