div盒子上下左右居中代码
时间: 2023-11-24 07:48:28 浏览: 85
盒子上下左右居中设置
要让一个div盒子上下左右居中,有多种方法可以实现,以下是其中两种方法:
1. 使用flex布局,将父元素设置为display:flex; align-items:center; justify-content:center;即可实现子元素上下左右居中。具体代码如下:
<style>
.parent{
display:flex;
align-items:center;
justify-content:center;
}
.child{
background-color:#1d3557;
width:200px;
height:200px;
}
</style>
<div class="parent">
<div class="child"></div>
</div>
2. 使用绝对定位,将子元素的top、left、right、bottom都设置为0,再将margin设置为auto即可实现子元素上下左右居中。具体代码如下:
<style>
.parent{
position:relative;
}
.child{
background-color:aquamarine;
width:600px;
height:400px;
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
}
</style>
<div class="parent">
<div class="child"></div>
</div>
阅读全文