angular ngClass code example
Example 1: Angular 8 ngClass If
[ngClass]="{'my-class': step=='step1'}"
Example 2: angular ngclass
content_copy
...
...
...
...
...
Example 3: Angular 8 ngClass If
[ngClass]="{'my-class': step=='step1', 'my-class2':step=='step2' }"
Example 4: ngclass angular
5,
'red': number <= 5,
}" >
//if the number is over 5, the class 'green' will be added to the div.
//if the number is below or equal 5, the class 'red' will be added to the div.
Example 5: ngClass
[ngClass]="step == 'step1' ? 'my_class1' : 'my_class2'"