Answers for "how to change input placeholder color in angular material"

0

angular material change placeholder color

.container {
  .mat-form-field-outline,
  .mat-form-field-empty.mat-form-field-label,
  .mat-form-field-label,
  .mat-form-field-underline,
  .mat-input-element,
  ::placeholder {
    color: $white !important;
  }
}
Posted by: Guest on February-10-2021
0

mat input change placeholder color

::ng-deep .mat-input-element::placeholder{
    color: red;
}
Posted by: Guest on January-29-2022

Code answers related to "how to change input placeholder color in angular material"

Code answers related to "Javascript"

Browse Popular Code Answers by Language