css实现水平垂直居中的几种方式
2021-03-12 20:27
标签:上下 cal inline sky 绝对定位 ems 一起学 pad ddl 梳理下平时常用css水平垂直居中方式~ HTML CSS 利用flex的 HTML CSS 相对定位下,使用绝对定位将上下左右都设置为0,再设置 HTML CSS 相对定位下,使用绝对定位,利用 HTML CSS 利用 上面都是在未知外容器和自身宽高下实现水平垂直居中的,如果已知其宽高,可以有更多种简单的方式实现居中,其原理无非是利用绝对定位的top/left偏移、margin偏移、padding填充,在此就不分析了。还有就是单纯文字的居中利用 欢迎到前端学习打卡群一起学习~516913974 css实现水平垂直居中的几种方式 标签:上下 cal inline sky 绝对定位 ems 一起学 pad ddl 原文地址:https://www.cnblogs.com/formercoding/p/12826126.html
使用flex布局
.box {
width: 100vw;
height: 500px;
background: skyblue;
display: flex;
align-items: center;
justify-content: center;
}
.child {
width: 200px;
height: 200px;
background-color: deepskyblue;
}
alignItems:center
垂直居中,justifycontent:center
水平居中
利用相对定位和绝对定位的
margin:auto
.box {
width: 100vw;
height: 500px;
background: skyblue;
position: relative;
}
.child {
width: 200px;
height: 200px;
background-color: deepskyblue;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
margin:auto
即可实现居中
利用相对定位和绝对定位,再加上外边距和平移的配合
.box {
width: 100vw;
height: 500px;
background: skyblue;
position: relative;
}
.child {
width: 200px;
height: 200px;
background-color: deepskyblue;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
margin
偏移外容器的50%,再利用translate
平移回补自身宽高的50%即可
利用
textAlign
和verticalAlign
.box {
width: 100vw;
height: 500px;
background: skyblue;
text-align: center;
}
.box:after {
content: "";
display: inline-block;
height: 100%;
width: 0;
vertical-align: middle;
}
.child {
display: inline-block;
vertical-align: middle;
}
textAlign:center
实现行内元素的水平居中,再利用verticalAlign:middle
实现行内元素的垂直居中,前提是要先加上伪元素并给设置高度为100%,用过elementUI
的可以去看看其消息弹窗居中实现方式就是如此
其他
lineHeight
和textAlign
即可实现。