Hello, I am currently attempting to dynamically change the color of a p
tag. However, I am facing issues with IE-11 not supporting this functionality. How can I resolve this problem?
<p style="color:{{userData.color}} !important;">{{userData.someText}}</p>
When inspecting the element in IE, it appears like this. Please note that it works perfectly fine in Chrome and Firefox!
I have already tried using
ng-style="color:{{userData.color}} !important;"