(css) Customize the el-dialog dialog box to add a background image

(css) Customize the el-dialog dialog box to add a background image


Effect:

insert image description here


// 文件管理对话框
/deep/ .el-dialog {
    
    
  background: transparent;
  background-image: url("../assets/image/file-upload-background.png");
  background-size: 100% 100%;
}
// 头部
/deep/ .el-dialog__title {
    
    
  color: #fff;
}
/deep/ .el-dialog__headerbtn .el-dialog__close {
    
    
  color: #fff;
}

Guess you like

Origin blog.csdn.net/qq_44754635/article/details/131849285