完美解决vue+element项目无法修改input输入框样式问题

问题: 无法修改el-input输入框样式

 

在网上查了很久,各种办法尝试过后最终找到解决办法,所以在此记录一下

神奇的 ::v-deep      深度作用选择器

 

效果如下:

 

 

 

 

 下面是详细代码:

::v-deep .remarks .el-textarea.is-disabled .el-textarea__inner {
  colorred !important;
  -webkit-text-fill-colorred !important;
}
::v-deep .remarks .el-input.is-disabled .el-input__inner {
  colorred !important;
  -webkit-text-fill-colorred !important;
}

posted @ 2020-09-23 10:13  Lucky_oldMan  阅读(4265)  评论(0编辑  收藏  举报