Answers for "class condition angular"

2

ngclass condition

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

Angular 8 ngClass If

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

ngclass condition

[class.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
1

conditionally assign a css class angular 9

<div [ngClass]="{'message': info.priority < 10,
                 'warn': info.priority > 10 && info.priority < 20, 
                 'error': info.priority > 30}">

{{info.text}}

</div>
Posted by: Guest on August-20-2020
0

ngclass condition

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

Browse Popular Code Answers by Language