html css 如何让div标签内容居中
时间: 2023-11-07 14:00:44 浏览: 110
可以使用以下两种方式让 `div` 标签内容居中:
1. 使用 `text-align: center` 属性让 `div` 内部文本居中:
```html
<div style="text-align: center;">内容居中</div>
```
2. 使用 `display: flex` 和 `justify-content: center` 属性让 `div` 内部元素居中:
```html
<div style="display: flex; justify-content: center;">
<p>内容居中</p>
</div>
```
以上两种方式都可以实现 `div` 内容居中的效果,具体选择哪种方式取决于具体场景需要。
阅读全文