Answers for "add class on condition angular"

CSS
2

ngclass condition

[ngClass]="{'my-class': step === 'step1'}"
Posted by: Guest on March-15-2021
0

add classon ng if

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

Angular 8 ngClass If

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

ngclass condition

[ngClass]="{1 : 'my_class1', 2 : 'my_class2', 3 : 'my_class4'}[step]"
Posted by: Guest on April-27-2021

Code answers related to "add class on condition angular"

Browse Popular Code Answers by Language