Answers for "class css angular with condition if else"

1

ngclass else

<p class="{{condition ? 'checked' : 'unchecked'}}">
<!-- or -->
<p [ngClass]="condition ? 'checked' : 'unchecked'">
<!--or -->
<p [ngClass]="[condition ? 'checked' : 'unchecked']">
Posted by: Guest on August-18-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

Code answers related to "class css angular with condition if else"

Browse Popular Code Answers by Language