How can I apply style on some item in a list that satisfy listed condition:
        <div data-ng-repeat="item in items">
           <div data-ng-style="{'background' : 'red' : item.selected}> {{item.name}}
           <div> 
        <div> 
How is it possible to apply this style on item that is selected.
 
     
     
     
     
     
     
     
    