div盒子水平垂直居中
时间: 2023-12-20 13:30:25 浏览: 140
div垂直居中
以下是两种div盒子水平垂直居中的方法:
1.使用flex布局
```css
.container {
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
}
```
2.使用绝对定位和transform属性
```css
.container {
position: relative;
}
.box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* 水平垂直居中 */
}
```
阅读全文