让前端飞个人收藏CSS

一起搞懂 CSS 水平居中与垂直居中的16个方法

2019-03-20  本文已影响31人  littleyu

一、水平居中

1.1 行内元素

.parent {
    text-align: center;
}
复制代码

1.2 块级元素

1.2.1 块级元素一般居中方法

.son {
    margin: 0 auto;
}
复制代码

1.2.2 子元素含 float

.parent{
    width:fit-content;
    margin:0 auto;
}

.son {
    float: left;
}
复制代码

1.2.3 Flex 弹性盒子

1) flex 2012版

.son {
    display: flex;
    justify-content: center;
}
复制代码

2)flex 2009版

.parent {
    display: box;
    box-orient: horizontal;
    box-pack: center;
}
复制代码

1.2.4 绝对定位

1)transform

.son {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
复制代码

2)left: 50%

.son {
    postion: absolute;
    width: 宽度;
    left: 50%;
    margin-left: -0.5*宽度
}
复制代码

3)left/right: 0

.son {
    position: absolute;
    width: 宽度;
    left: 0;
    right: 0;
    margin: 0 auto;
}
复制代码

小结

以上是 CSS 水平居中的 8 种方法。

二、垂直居中

2.1 行内元素

.parent {
    height: 高度;
}

.son {
    line-height: 高度;
}
复制代码

注:① 子元素 line-height 值为父元素 height 值。② 单行文本。

2.2 块级元素

2.2.1 行内块级元素

.parent::after, .son{
    display:inline-block;
    vertical-align:middle;
}
.parent::after{
    content:'';
    height:100%;
}
复制代码

适应 IE7。

2.2.2 table

.parent {
  display: table;
}
.son {
  display: table-cell;
  vertical-align: middle;
}
复制代码

优点

缺点

2.2.3 Flex 弹性盒子

1)flex 2012版

.parent {
    display: flex;
    align-items: center;
}
复制代码

优点

缺点

2)flex 2009版

.parent {
    display: box;
    box-orien: vertical;
    box-pack: center;
}
复制代码

优点

缺点

2.2.4 绝对定位

1)transform

.son {
    position: absolute;
    top: 50%;
    transform: translate( 0, -50%);
}
复制代码

优点

缺点

2)top: 50%

.son {
    position: absolute;
    top: 50%;
    height: 高度;
    margin-top: -0.5高度;
}
复制代码

优点

缺点

3)top/bottom: 0;

.son {
    position: absolute;
    top: 0;
    botton: 0;
    margin: auto 0;
}
复制代码

优点

缺点

2.2.5 Grid (新增~)

1)在网格容器上设置 align-itemsalign-content

.parent{
  display:grid;
  align-items:center;
 /*align-content:center;*/
} 

2)在网格项目中设置 align-self 或者 margin: auto 0

.parent{
  display:grid;
} 
.child{
  align-self:center;
 /*margin: auto 0;*/
}

缺点

小结

以上是 CSS 垂直居中的 8 种方法及其优缺点。

三、小结

以上总结了水平居中、垂直居中各8个共16种方法。

其中,

同时适用于水平居中和垂直居中。

希望帮助到了你。

欢迎讨论。

٩(๑❛ᴗ❛๑)۶


参考文献

[1] louis. 16种方法实现水平居中垂直居中[OL],2017-04-20.

[2] 慢思考快行动. css设置垂直居中[OL], 2017-09-03.

上一篇下一篇

猜你喜欢

热点阅读