修改 el-select 背景图 样式

1. 原图------------效果图

 2.  css

/***********大的背景图***************/
.el-popper.is-pure {
    background: url(/src/assets/imgList/memuBG.png) no-repeat;
    border: none;
    background-size: 100% 100%;
}


/*********选中行的字体***********/
.el-select-dropdown__item.selected {
    color: #ffffff;
    font-weight: 700;
}

/*************选中行的背景色****************/
.el-select-dropdown__item.hover, .el-select-dropdown__item:hover {
    background-color: #5793e1;
}

猜你喜欢

转载自blog.csdn.net/CMDN123456/article/details/132347022