AngularJs Conditional CSS Class Style

AngularJs Conditional CSS Class and CSS Style

Hello everyone, I am going to share the code sample for apply the css class and css style in AngularJs with and without conditions.

The example as given below in details.

Use of  CSS Class in AngularJs

<div ng-repeat="user in users" ng-class="{class-active': user.isActive}">
  <label ng-show="!(user.isDeleted)">
    <input type="checkbox" ng-model="user.isActive" />
    <span>{{user.UserName}}</span>
  </label>
</div

Use of  CSS style in AngularJs

<div ng-repeat="user in users" ng-style="{color: myColor}">
  <label ng-show="!(user.isDeleted)">  </label>
</div

OR

<div ng-repeat="user in users" ng-style="{width: user.isValid == 'Invalid'  ?  0% : 100%}">
  <label ng-show="!(user.isDeleted)">  </label>
</div




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^