Answers for "change color of placeholder of ng-select"

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
1

how to change placeholder color of select

select {
  color: #9e9e9e;
}
option:not(:first-of-type) {
  color: black;
}
Posted by: Guest on July-27-2021

Code answers related to "change color of placeholder of ng-select"

Browse Popular Code Answers by Language