0

I tried change text color of dropdown list. It didnot workour. Please help me out,. I am using angular version 12. This is my component template

<ng-select [items]="dropdownList" bindLabel="name" bindValue="id"
        [(ngModel)]="selectedItems"  class="custom"
          (change)="updateObj($event)">
        </ng-select>

Anyhelp Appreciable,..

Viji Lakshmi
  • 137
  • 11

1 Answers1

0

Add selector for your custom class in .css file of that component with !important flag. (green as example)

.custom { color: green !important; }

Useful link (potential duplicate) --> Angular mat-select text color doesn't change

Dharman
  • 30,962
  • 25
  • 85
  • 135
Chaka15
  • 1,105
  • 1
  • 8
  • 24