css 设置垂直居中
时间: 2024-01-07 07:22:23 浏览: 87
使用css实现div垂直居中的示例
以下是两种CSS设置垂直居中的方法:
1. 使用相对定位和负边距:
```html
<style>
.box1 {
height: 300px;
width: 300px;
border: 10px solid pink;
position: relative;
}
.box2 {
height: 100px;
width: 100px;
background-color: #bfa;
position: absolute;
top: 50%;
left: 50%;
margin-top: -50px;
margin-left: -50px;
}
</style>
<div class="box1">
<div class="box2"></div>
</div>
```
2. 使用文本对齐和行高:
```html
<style>
.box {
height: 300px;
width: 300px;
border: 10px solid pink;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<div class="box">
<p>居中文本</p>
</div>
```
阅读全文