I have an HTML element with the style attribute for inline CSS.
<div style="border-color:aqua!important">
...
</div>
I want to be able to pass values such that "aqua" would be changed via Angular 2 interpolation so I tried this...
<div style="border-color:{{item.color}}!important">
...
</div>
But this isn't working