但通常,el-dialog的水平居中是通过其父元素.el-dialog__wrapper来实现的,所以你可能需要调整.el-dialog__wrapper的样式。 4. 应用适当的CSS样式以实现内容垂直居中 为了实现垂直居中,我们可以使用多种方法,如绝对定位、Flexbox等。以下是两种常用的方法:
让el-dialog 居中,并且内容多的时候内部可以滚动 FLowUs邀请链接:https://flowus.cn/login?code=AXNU63 FlowUs邀请码:AXNU63 .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: fl...