Answers for "how to set class in ngclass in angular"

CSS
3

Angular 8 ngClass If

[ngClass]="{'my-class': step=='step1'}"
Posted by: Guest on February-28-2020
0

Angular 8 ngClass If

[ngClass]="{'my-class': step=='step1', 'my-class2':step=='step2' }"
Posted by: Guest on February-28-2020
0

Angular 8 ngClass If

[ngClass]="{1:'my-class1',2:'my-class2',3:'my-class4'}[step]"
Posted by: Guest on February-28-2020

Code answers related to "how to set class in ngclass in angular"

Browse Popular Code Answers by Language