实现div居中的方法
程序员文章站
2022-05-01 17:15:49
...
1.position 定位 (元素已知宽高)
.box{
width: 200px;
height:200px;
background-color: darkgrey;
position: relative;
}
.content{
width: 100px;
height: 100px;
background-color: plum;
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px; //margin-top减去元素高度的一半
margin-left: -50px; //margin-left减去元素宽度的一半
}
效果图:
2.position 定位 (元素已知宽高)
//css代码:
.content{
width: 100px;
height: 100px;
background-color: darkorange;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
//HTML代码:
<div class="box">
<div class="content"></div>
</div>
效果图:
3.position 定位 (未知元素宽高)
//css代码:
.box{
width: 200px;
height:200px;
background-color: darkgrey;
position: relative;
}
.content{
background-color: plum;
margin: auto;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
}
//HTML代码:
<div class="box">
<div class="content">2020</div>
</div>
效果图:
4.display:flex 布局实现
//css代码:
.box{
width: 200px;
height:200px;
background-color: darkgrey;
display: flex;
justify-content: center;//定义在主轴上的对齐
align-items: center;//定义在交叉轴上对齐
}
.content{
width: 100px;
height: 100px;
background-color: plum;
}
5.使用css3计算的方式实现居中 calc()
.box{
width: 200px;
height:200px;
background-color: darkgrey;
position: relative;
}
.content{
width: 100px;
height: 100px;
background-color: plum;
position: absolute;
top: calc(50% - 50px); //用calc(),50%减去宽高的一半
left: calc(50% - 50px);
}
上一篇: div盒子水平垂直居中的方法
下一篇: DIV居中的经典方法