让 el-dialog 居中,并且内容多的时候内部可以滚动

2020-05-19 18:03:04
.el-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 !important;
    transform: translate(-50%, -50%);
    max-height: calc(100% - 30px);
    max-width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}

.el-dialog__body {
    overflow: auto;
}

转载自https://www.cnblogs.com/wbyixx/p/11937106.html

当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »