css 样式让div盒子居中展示
时间: 2023-10-20 17:23:26 浏览: 102
div居中显示的css样式代码
5星 · 资源好评率100%
您好!感谢您的提问,让我来为您解答。要让 div 盒子居中展示,您可以使用以下 CSS 样式:
```css
div {
width: 200px; /* 设置盒子宽度,可根据实际情况修改 */
height: 200px; /* 设置盒子高度,可根据实际情况修改 */
margin: 0 auto; /* 设置左右 margin 值为 auto,即可水平居中展示 */
display: flex; /* 让盒子内容垂直居中 */
justify-content: center; /* 让盒子内容水平居中 */
align-items: center; /* 让盒子内容垂直居中 */
}
```
以上代码会让 div 盒子在其父元素中水平居中展示,并且盒子内容垂直居中。希望可以对您有所帮助!
阅读全文