html5 div居中对齐
时间: 2023-11-10 09:04:23 浏览: 118
html div 自适应剧中 上下左右全部居中
4星 · 用户满意度95%
可以使用CSS的flex布局来实现div居中对齐。具体方法如下:
HTML代码:
```
<div class="container">
<div class="box">这是一个居中对齐的div</div>
</div>
```
CSS代码:
```
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.box {
width: 200px;
height: 200px;
background-color: #ccc;
text-align: center;
line-height: 200px;
}
```
阅读全文