element plus效果截图

想要达到的效果

代码

    /* 去除边框 */
    :deep(.el-select .el-input__wrapper) {
        box-shadow: none !important;
    }

    /* 去除选中时蓝色边框(下面两个都要加上) */
    :deep(.el-input .el-input__wrapper.is-focus) {
        box-shadow: none !important;
    }

    :deep(.el-select .el-input.is-focus .el-input__wrapper) {
        border-color: #DCDFE6 !important;
        box-shadow: none !important;
    }

 如果想让el-select去掉边框同时不占用位置可以使用以给el-select标签添加一个class使用以下代码

        position: absolute;
        clip: rect(2px 90px 30px 2px);

Logo

前往低代码交流专区

更多推荐