I want to enhance this text by making the color red:
free.booking = "<span class='start-property-text' style='color:#ff0000;'>Very bad!</span>"
On the page I inject it into html:
<span ng-bind-html="free.booking"></span>
But in the browser it only renders:
<span ng-bind-html="free.booking" class="ng-binding">
<span class="start-property-text">Never had booking!</span>
</span>
What happened to my style='color:#ff0000;'
??