I have a div and I want that when it is hovered the background color changes and I also need to choose the color based on an element in my component.
<div *ngFor="let u of users;"
[style:hover.background-color] = "u.selected ? 'red' : 'blue' ">
</div>