Hi I am trying to give color dynamically to p
tag but for IE-11 browser it is not supporting how can I fix this issue,
<p style="color:{{userData.color}} !important;">{{userData.someText}}</p>
When I inspect the element it is coming like this in IE Note: it is working fine in chrome, firefox..!
I tried with ng-style="color:{{userData.color}} !important;"
Pass styling object to ng-style {color:userData.color}
<p ng-style="{color:userData.color}">{{userData.color}}</p>