Answers for "ngclass binding"

1

ngclass angular

<div [ngClass]="{ 
'green': number > 5,
  'red': number <= 5,
}" ></div>
//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.
Posted by: Guest on October-12-2020
0

ngClass

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

ngClass

[class.my_class] = "step === 'step1'"
Posted by: Guest on April-27-2021
-2

ng class project

ngDoCheck()
Posted by: Guest on June-24-2020

Browse Popular Code Answers by Language