水平居中和垂直居中的实现,特整理纪录一下。
子元素是block元素
1 2 3
| <div class="father" style="width:500px; height:200px; background-color:black;"> <div class="child" style="width:100px; height:100px; background-color:red"></div> </div>
|
1.水平居中
先看下效果:

每一个CSS代码块是一种解决方案(chrome下均亲测可用,实际运用请注意浏览器兼容):
1 2 3
| .child { margin: 0 auto; }
|
1 2
| .father { text-align: center;} .child { display: inline-block;}
|
1 2 3 4 5
| .child { position: relative; left: 50%; transform: translate(-50%,0); }
|
1 2 3 4
| .father { display: flex; justify-content: center; }
|
2.垂直居中
效果如下:

1 2 3 4 5 6
| .child { position: relative; top: 50%; transform: translate(0,-50%); }
|
1 2 3 4 5
| .father { display: flex; flex-direction: column; justify-content: center; }
|
3.水平垂直居中
效果如下:

其实参考上面的水平居中和垂直居中的做法,就可以推出水平垂直居中的方法了吧
1 2 3 4 5 6 7 8 9
| .father { position: relative; } .child { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
|
1 2 3 4 5
| .father { display: flex; justify-content: center; align-items: center; }
|
1 2 3 4 5 6
| .father { display: flex; } .child { margin: auto; }
|
1 2 3 4 5 6 7 8 9 10 11
| .father { position: relative; } .child { position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; }
|
子元素是inline元素
1 2 3
| <div class="father" style="width:500px; height:200px; background-color:black;"> <span class="child" style="color:white;">我是行内元素</span> </div>
|
这里我就直接上水平垂直居中了:

1 2 3 4 5 6 7 8 9 10 11
| .father { position: relative; } .child { display: inline-block; width: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) }
|
1 2 3 4 5 6
| .father { display: flex; } .child { margin: auto; }
|
1 2 3 4
| .father { text-align: center; line-height: 200px; }
|
1 2 3 4 5 6 7 8
| .father { display: table; text-align: center; } .child { display: table-cell; vertical-align: middle; }
|
如果今后发现更好的方法,还会上来更新,未完待续..