change css angular binding

Solutions on MaxInterview for change css angular binding by the best coders in the world

showing results for - "change css angular binding"
Samuel
27 Jun 2019
1<div [style.background-color]="activity.status == 'Pending' ? 'red' : 'green'"></div>
2
3<div [ngStyle]="{'backgroundColor': activity.status == 'Pending' ? 'red' : 'green' }"></div>