Answers for "ngclass with condition in angular"

2

ngclass condition

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

if condition in class angular 8

<i [class]="user.login_status == 1 ? 'fas fa-circle user_active' : 'fas fa-circle user_inactive'" aria-hidden="true"></i>
Posted by: Guest on June-17-2020
2

ngclass condition

[ngClass]="{'my_class': step === 'step1', 'my_class2' : step === 'step2' }"
Posted by: Guest on April-27-2021
1

Angular 8 ngClass If

[class.my-class]="step=='step1'"
Posted by: Guest on February-28-2020

Code answers related to "ngclass with condition in angular"

Browse Popular Code Answers by Language