已经不用了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
1. 不支持IE6
.world {width:200px;height:200px;background: #99f;position:relative;}
.world .center {width:100px;height:100px;margin:auto;position:absolute;top:0;left:0;right: 0;bottom: 0;background: #f9f;}
1. 不兼容IE6/7
.world {width:200px;height:200px;background: #99f;display: table-cell;vertical-align: middle;text-align: center;}
.world .center {width:100px;height:100px;display: inline-block;background: #f9f;vertical-align: middle;}
1. IE9+
.world {width:200px;height:200px;background: #99f;position:relative;}
.world .center {width:100px;height:100px;background: #f9f;left:50%;top:50%;position:absolute;transform: translate(-50%,-50%);}
1. 移动端首选
.world {width:200px;height:200px;background: #99f;display: flex;align-items: center;justify-content: center;}
.world .center {width:100px;height:100px;background: #f9f;}
1. 移动端首选
.world {width:200px;height:200px;background: #99f;display: flex;}
.world .center {width:100px;height:100px;background: #f9f;margin:auto;}
1. 纯position 没兼容性问题
.world {width:200px;height:200px;background: #99f;position:relative;}
.world .center {width:100px;height:100px;background: #f9f;position: absolute;left:50%;top:50%;margin:-50px 0 0 -50px;}
1
2
3
<div class="world">
<div class="center"></div>
</div>