前几天面试一家公司,被问到垂直居中的方法,我只答出了 margin、table-cell、flex 三种。回来之后觉得特别惭愧,于是整理了一下居中的方案做个记录,希望对大家也有帮助。
如果哪里写的不对,欢迎指正,非常感谢。

块级元素居中 html 代码部分

  1. <div class="parent">
  2. <div class="child">child</div>
  3. </div>

行内元素居中 html 代码部分

  1. <div class="parent">
  2. <span class="child">child</span>
  3. </div>

水平居中

01 行内元素 text-align: center;

  1. .parent {
  2. text-align: center;
  3. }

02 块级元素 margin: auto;

(低版本浏览器还需要设置 text-align: center;)

  1. .parent {
  2. text-align: center;
  3. }
  4. .child {
  5. width: 100px;
  6. margin: auto;
  7. border: 1px solid blue;
  8. }

由于本文主要想记录的是垂直居中的方案,这里水平垂直的其他方案就不做过多记录了。

垂直居中

01 行内元素(单行文字垂直居中):设置 line-height = height

  1. .parent {
  2. height: 200px;
  3. line-height: 200px;
  4. border: 1px solid red;
  5. }

02 块级元素:绝对定位(需要提前知道尺寸)

优点:兼容性不错
缺点:需要提前知道尺寸,margin-top: -(高度的一半); margin-left: -(宽度的一半);

  1. .parent {
  2. position: relative;
  3. height: 200px;
  4. }
  5. .child {
  6. width: 80px;
  7. height: 40px;
  8. background: blue;
  9. position: absolute;
  10. left: 50%;
  11. top: 50%;
  12. margin-top: -20px;
  13. margin-left: -40px;
  14. }

03 块级元素:绝对定位 + transform

优点:不需要提前知道尺寸
缺点:兼容性不好

  1. .parent {
  2. position: relative;
  3. height: 200px;
  4. }
  5. .child {
  6. width: 80px;
  7. height: 40px;
  8. position: absolute;
  9. left: 50%;
  10. top: 50%;
  11. transform: translate(-50%, -50%);
  12. background: blue;
  13. }

04 块级元素:绝对定位 + margin: auto;

优点:不需要提前知道尺寸,兼容性好
缺点:这个方法是我最喜欢用的一个,要说缺点的话,我目前还不知道。
此方法出自张鑫旭老师的博客 小 tip: margin:auto 实现绝对定位元素的水平垂直居中

  1. .parent {
  2. position: relative;
  3. height: 200px;
  4. }
  5. .child {
  6. width: 80px;
  7. height: 40px;
  8. position: absolute;
  9. left: 0;
  10. top: 0;
  11. right: 0;
  12. bottom: 0;
  13. margin: auto;
  14. background: blue;
  15. }

05 块级元素:padding

缺点:如果高度固定,需要提前计算尺寸(只在某些特定情况适用)。

  1. .parent {
  2. padding: 5% 0;
  3. }
  4. .child {
  5. padding: 10% 0;
  6. background: blue;
  7. }

06 块级元素:display: table-cell

  1. .parent {
  2. width: 600px;
  3. height: 200px;
  4. border: 1px solid red;
  5. display: table;
  6. }
  7. .child {
  8. display: table-cell;
  9. vertical-align: middle;
  10. }

或:

这个方案是在知乎看到的,原文说是淘宝团队的方案:
用 CSS 实现元素垂直居中,有哪些好的方案? - Gino 的回答 - 知乎
张鑫旭老师的博客也有提到过:
我所知道的几种 display:table-cell 的应用

  1. .parent {
  2. height: 300px;
  3. border: 1px solid red;
  4. display: table-cell;
  5. vertical-align: middle;
  6. /* *display: block;
  7. *font-size: (heightX0.873);
  8. *font-family: arial; */
  9. }

同样适用于多行文字的垂直居中处理

HTML 代码:

  1. <div class="parent">
  2. <span class="child">child child child child child child child child child child child child child child child child child child child childchild child child </span>
  3. </div>

CSS 代码:

  1. .parent {
  2. width: 400px;
  3. height: 300px;
  4. display: table-cell;
  5. vertical-align: middle;
  6. border: 1px solid red;
  7. }
  8. .child {
  9. display: inline-block;
  10. vertical-align: middle;
  11. background: blue;
  12. }

07 块级元素:display: flex

缺点:兼容性不好

  1. .parent {
  2. width: 600px;
  3. height: 200px;
  4. border: 1px solid red;
  5. display: flex;
  6. align-items: center;
  7. justify-content: center; /*水平居中*/
  8. }
  9. .child {
  10. background: blue;
  11. }

08 块级元素:伪元素

这个方案是先从这位博主的文章中看到:
CSS:使用伪元素做水平垂直居中的微深入研究
然后发现张鑫旭老师的文章中也有提到:
:after 伪类 + content 内容生成经典应用举例

  1. .parent {
  2. width: 300px;
  3. height: 300px;
  4. border: 1px solid red;
  5. text-align: center;
  6. }
  7. .child {
  8. background: blue;
  9. width: 100px;
  10. height: 40px;
  11. display: inline-block;
  12. vertical-align: middle;
  13. }
  14. .parent::before {
  15. content: '';
  16. height: 100%;
  17. display: inline-block;
  18. vertical-align: middle;
  19. }

09 块级元素:calc()

也是个不错的方法。
缺点:兼容性较差,需要计算。

  1. .parent {
  2. width: 300px;
  3. height: 300px;
  4. border: 1px solid red;
  5. position: relative;
  6. }
  7. .child {
  8. width: 100px;
  9. height: 100px;
  10. background: blue;
  11. padding: -webkit-calc((100% - 100px) / 2);
  12. padding: -moz-calc((100% - 100px) / 2);
  13. padding: -ms-calc((100% - 100px) / 2);
  14. padding: calc((100% - 100px) / 2);
  15. background-clip: content-box;
  16. }

10 块级元素:inline-block

HTML 代码:

  1. <div class="parent">
  2. <div class="child">child</div>
  3. <div class="brother">brother</div>
  4. </div>

CSS 代码:

  1. .parent {
  2. width: 400px;
  3. height: 400px;
  4. border: 1px solid red;
  5. position: relative;
  6. }
  7. .child, .brother {
  8. display: inline-block;
  9. vertical-align: middle;
  10. }
  11. .child {
  12. background: blue;
  13. font-size: 12px;
  14. }
  15. .brother {
  16. height: 400px;
  17. font-size: 0;
  18. }

其他

当然,还有一种方法,就是使用 table 布局:

  1. <table>
  2. <tr>
  3. <td align="center" valign="middle">content</td>
  4. </tr>
  5. </table>

因为 html 还要加 table 等标签,冗余有点多,而且结构也改变了。
https://juejin.im/post/6844903560879013901