0%

元素居中的方法

水平居中

margin: 0 auto

1
子元素块级元素,设置 `margin: 0 auto`

text-align: center

子元素行内元素,父亲设置 text-align: center 即可

水平垂直居中

负数 margin

1
2
3
4
5
6
7
8
9
div {
position: absolute;
width: 100px;
height: 150px;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -75px;
}

margin: auto

1
2
3
4
5
6
7
8
9
10
div {
position: absolute;
width: 100px;
height: 100px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}

transfrom

1
2
3
4
5
6
7
8
div {
position: absolute;
width: 100px;
height: 100px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

flex

1
2
3
4
5
div {
display: flex;
justify-content: center;
align-items: center;
}

参考资料:
https://www.jianshu.com/p/a7552ce07c88

本文标题:元素居中的方法

文章作者:Flower-F

发布时间:2021年12月30日 - 16:10

最后更新:2022年01月19日 - 16:40

-------------本文结束,感谢您的阅读-------------

欢迎关注我的其它发布渠道