Can we use angular variables to write inline CSS styles?
<div style="background: transparent url({{eventInfo.eventHeaderImg}}) top center no-repeat;"></div>
Here is the output I received:
"NetworkError: 404 Not Found - http://test/eventInfo.eventHeaderImg"
It seems that the value was not rendered properly.
While I know it can be changed in the controller, I am curious if my approach can achieve this as well.