I use angular js and I used ng-repeat for the loop and show the details on the page, is it possible to change the font color based on the value?
<li ng-repeat="s in vm.States" > <span>{{s.Name}}</span> <span>{{s.state}}</span> </li> Test1 -Error(Red) Test2-Warning(blue) Test 3-Ignored(green)
here the value of s.state can be Error, Warning, Ignored Can I show different font colors for these states through angular or css
angularjs css css3
user1076698
source share