@dipankar123 wrote:
hi guys can i set width using [ngStyle]?
i have a div and i want to set it’s width using [ngStyle]. can i do that?
changing background color using ngStyle workinghere is my code:
page.html:<div id="mydiv" [ngStyle]="{'background-color': divColor; 'width': divWidth}"></div>
page.ts:
divColor: string; divWidth: any; constructor(){ this.divColor = 'rgb(34, 34, 34)'; this.divWidth = 10; }
Posts: 2
Participants: 2