问题描述: 修改Element UI 弹出对话框 padding 样式失效,直接.el-dialog__body 内写样式根本不起作用,试了下网上的解决方案,最后还是用下面这种方法搞定了。
弹窗:
custom-class 后面是自定义的 class 名称
<el-dialog custom-class="details_class" title="" :visible.sync="open" </el-dialog>
样式代码:
<style scoped> /deep/ .details_class .el-dialog__body{ padding: 0px; } </style>
修改后效果:
标签:__,el,样式,body,Element,dialog From: https://www.cnblogs.com/wcnprincess/p/16880994.html