我们都清楚元素相对其父级元素水平居中展示的方法:对于inline 的元素,我们都会想到为其父级元素设置tex-align : center。对于block 元素,我们会设定其 margin: 0px auto
然而,垂直居中的实现方法,并没有这么简单,以下列出 6 种垂直居中法。

参考文章:6 Methods For Vertical Centering With CSS

Vertical-Align

既然有水平居中属性text-align: center, 我们的第一反应、实现水平居中的方法应该是vertical-align: middle

该属性定义行内元素的基线相对于该元素所在行的基线的垂直对齐。在表单元格中,这个属性会设置单元格框中的单元格内容的对齐方式.

But !!!

Vertical-align doesn’t apply to block-level elements like a paragraph inside a div.

如此可知:这个方式确实直观且有效,但其适用范围仅仅限于 table cell 中的内容

这也是初学者会容易踩坑且十分困惑的一个问题。

CSS table 中 Vertical-Align 垂直居中示例:

  1. <div class="parent">
  2. <div class="child">Content here</div>
  3. </div>
  1. .parent {display: table;}
  1. .child {
  2. display: table-cell;
  3. vertical-align: middle;
  4. }

Line-Height

该方法适用于单行文本 (或图片) 的垂直居中,我们需要做的仅仅是将line-height属性设置的大于font-size,且等于容器的高度。

  1. <div class="content">
  2. Text here
  3. </div>
  1. .content{
  2. height:200px; /*不必要*/
  3. line-height: 200px;
  4. }

当然,我们也可以不设置父级元素的高度,而是让子元素将其撑开,同样能达到效果。

同理,图片和单行文本一样,也为inline元素,也可以通过设置容器的line-height达到居中效果:

  1. <div class="content">
  2. <img src="image.png" alt="" />
  3. </div>
  1. .content {
  2. line-height: 200px;
  3. }
  1. #parent img {
  2. vertical-align: middle; /*调整基线位置,不是设定垂直居中哦~*/
  3. }

绝对定位 and 负 Margin

这里通过绝对定位将目标元素左上角定位在父级元素的中央位置,然后通过设定目标元素的margin属性使其中心点与父级元素重合,适用于所有block元素。

  1. <div class="parent">
  2. <div class="child">Content here</div>
  3. </div>
  1. .parent {
  2. position: relative;
  3. height: 800px;
  4. }
  1. .child {
  2. position: absolute;
  3. top: 50%;
  4. left: 50%;
  5. height: 30%;
  6. width: 50%;
  7. margin: -15% 0 0 -25%; /*margin 为负值且为自身尺寸的一半*/
  8. }

然而,使用这种方法经常会出现父级容器中的内容溢出, 所以最好在知道父级元素的宽度和高度时使用该方法。

绝对定位 and Stretching

这里通过绝对定位并设置top, bottom, right, and left 为 0 ,将目标元素拉伸至父级元素的所有 4 个边。 再设置 marginauto,使得 上下和左右 margin 相等。则实现完全的剧中效果。适用于所有block元素。

  1. <div class="parent">
  2. <div class="child">Content here</div>
  3. </div>
  1. .parent {
  2. position: relative;
  3. height: 300px;
  4. }
  1. .child {
  2. position: absolute;
  3. top: 0;
  4. bottom: 0;
  5. left: 0;
  6. right: 0;
  7. width: 50%;
  8. height: 30%;
  9. margin: auto;
  10. }

这种方法,在 IE 8 以下不 work …

绝对定位 and transform3d

这里通过绝对定位将目标元素左上角定位在父级元素的中央位置,然后通过设定目标元素的transform3d属性使其中心点与父级元素重合,适用于所有block元素。

  1. <div class="parent">
  2. <div class="child">Content here</div>
  3. </div>
  1. .parent {
  2. position: relative;
  3. height: 300px;
  4. }
  1. .child {
  2. position: absolute;
  3. top:50%;
  4. left:50%;
  5. width: 150px;
  6. height: 130px;
  7. transform:translate3d(-50%,-50%,0); /*向左向上移动自身尺寸的一半*/
  8. }

IE 8 以下不 work …

css3 中的 Flex 布局

将父级容器设置为 Flex 容器,并规定子项目的排列方式。详细参见 Flex 布局教程

  1. <div class="parent">
  2. <div class="child">Content here</div>
  3. </div>
  1. .parent {
  2. display: flex;
  3. display: -webkit-box;
  4. display: -webkit-flex;
  5. display: -moz-box;
  6. display: -moz-flex;
  7. display: -ms-flexbox;
  8. /* 子元素主轴(默认为水平轴)上居中*/
  9. -webkit-box-align: center;
  10. -moz-box-align: center;
  11. -ms-flex-pack:center;/* IE 10 */
  12. -webkit-justify-content: center;
  13. -moz-justify-content: center;
  14. justify-content: center;/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
  15. /* 子元素交叉轴(默认为纵轴)居中 */
  16. -webkit-box-pack: center;
  17. -moz-box-pack: center;
  18. -ms-flex-align: center;/* IE 10 */
  19. -webkit-align-items: center;
  20. -moz-align-items: center;
  21. align-items: center;
  22. height: 300px;
  23. }
  24. .child {
  25. width: 150px;
  26. height: 130px;
  27. }

支持 CSS3 的浏览器可用, 由于个浏览器厂商各异,导致各种前缀眼花缭乱。
https://juejin.im/entry/6844903464540045326