I try to bind ngStyle to ng-content, it doesn't work, see below example:
<ng-content select="panel-one" [ngStyle]="{'width':size+'px'}"></ng-content>
I search on internet only find below solution,
::content >>> panel-one {width:50px}
=>from https://plnkr.co/edit/T5CoP5qmd4nzIPAFjLNQ?p=preview
but it can not dynamic change the style value.