As per this link
I can do
<p [style.width.px]="30">
Some text that may be important.
</p>
This will set a width of 30 px. How do I do the same for percentage ?
<p [style.width.percent]="30"> // This doesn't work
Some text that may be important.
</p>