学无先后,达者为师

网站首页 编程语言 正文

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

作者:沉、睡 更新时间: 2022-02-02 编程语言

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

<el-dialog title="图标设置" :visible.sync="iconModal" custom-class="pub_dialog">
</el-dialog>

css 放到公共css文件里,不能放到页面的style里

// dialog自定义
.pub_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;
}

.pub_dialog .el-dialog__body {
    overflow: auto;
}

原文链接:https://blog.csdn.net/zz975896590/article/details/119991141

栏目分类
最近更新