css盒子水平垂直居中(4种)
CSS盒子水平垂直居中可以通过多种方法实现,以下是四种常用的居中方法:
- 使用flexbox布局
.parent {
display: flex;
justify-content: center;
align-items: center;
}
- 使用grid布局
.parent {
display: grid;
place-items: center;
}
- 使用绝对定位和transform
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
- 使用margin:auto
.parent {
position: relative;
}
.child {
width: 50%;
height: 50%;
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
以上四种方法各有优缺点,可以根据实际情况选择合适的方法。
评论已关闭