el-dialog尾部居中
时间: 2023-10-05 09:11:10 浏览: 81
element ui 对话框el-dialog关闭事件详解
el-dialog尾部居中的方法如下所示:
可以通过设置dialog的css样式来实现el-dialog尾部居中。首先,你需要给dialog的容器元素添加一个class,比如"dialog-container"。然后,在你的CSS中,为该class添加以下样式:
.dialog-container {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
这样就可以实现el-dialog尾部居中的效果了。
阅读全文