Modify the font of el-textarea and the font and color of placeholder

<style scoped lang="scss">
/deep/.el-textarea input::-moz-input-placeholder {
  font-family:"Microsoft";
  color:#C0C4CC;
}
/deep/.el-textarea__inner::-webkit-input-placeholder {
  font-family:"Microsoft";
  color:#C0C4CC;
}
</style>

or

<style rel="stylesheet/scss" lang="scss" scoped>
//修改字体颜色大小:
  /deep/.input_remark1 .el-textarea__inner {
    color: #101010;
  }
//修改未输入时字体大小和颜色
  /deep/.sale_sel .el-input--small {
    color: #101010;
    font-size: 14px;
  }
</style>

Guess you like

Origin blog.csdn.net/weixin_43923808/article/details/131770434