css让元素水平垂直居中
时间: 2023-05-31 13:04:17 浏览: 114
css实现元素水平垂直居中常见的两种方式实例详解
5星 · 资源好评率100%
有多种方法可以使用 CSS 让元素水平垂直居中,以下是其中几种常见的方法:
1. 使用 Flexbox 布局
```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%);
}
```
3. 使用 table-cell 和 vertical-align 属性
```css
.container {
display: table-cell;
vertical-align: middle;
text-align: center;
}
```
4. 使用 Grid 布局
```css
.container {
display: grid;
place-items: center;
}
```
阅读全文