Answers for "add conditional class in angularjs"

2

ngclass condition

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

conditional classes angular

<div 
  [className]="isActive ? 'active' : 'inactive'">
</div>
Posted by: Guest on October-18-2020
0

ngclass condition

[ngClass]="step == 'step1' ? 'my_class1' : 'my_class2'"
Posted by: Guest on April-27-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language