Bootstrap

el-input背景设置为透明色 elementUi Plus

//背景色设置为透明
:deep(.el-input__wrapper){
  background-color:rgba(0,0,0,0);
}

//输入框颜色
:deep(.el-input__inner) {
  background-color: rgba(0, 0, 0, 0) !important;
    color: #fff;
}

//历史记录后自动补充的颜色
:deep(input:-webkit-autofill) {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-out 0.5s;
}

//提示框的字体颜色
:deep(input::-webkit-input-placeholder) {
  color: #fff;
}

效果图如下:

在这里插入图片描述

;