elementui 居中显示 el-card
时间: 2023-08-08 13:14:08 浏览: 679
CSS常见的让元素水平居中显示的方法
要让 ElementUI 的 `el-card` 居中显示,可以使用 flex 布局来实现。你可以在包含 `el-card` 的父元素上应用以下 CSS 样式:
``` css
display: flex;
justify-content: center;
align-items: center;
```
这样就可以让 `el-card` 元素居中显示了。如果你只想让 `el-card` 水平居中,可以将 `justify-content` 属性设置为 `center`。如果你只想让 `el-card` 垂直居中,可以将 `align-items` 属性设置为 `center`。
阅读全文