I'm trying to render a HTML in Angular 2 with [innerHTML]. However angular 2 removes the style attribute from html elements. How can I get the styles rendered?
component.ts
...
content = "<table><tr><td style="width:30%">Hallo</td><td style="width:70%">Welt</td></tr></table>"
---
component.html
<div [innerHTML]="content"></div>