I'm using Angular 2 and I've written the below code:
<div [style.width.px]="width">some texts </div>
I've also tried:
<div [ngStyle]="{'width.px': width}">some texts </div>
export class MyComponent
{
width: number = 150;
}
But it doesn't bind the width to the div
element.
What am I doing wrong?
Works fine for me
Plunker example
@Component({
selector: 'my-app',
styles: [`div { border: 3px solid red; }`]
template: `
<div>
<h2>Hello {{name}}</h2>
<div [style.width.px]="width">some texts </div>
</div>
`,
})
export class App {
name:string;
width: number = 250;
constructor() {
this.name = 'Angular2'
}
}
This worked for me:
<div [style.width]="paymentPerc+'%'"> Payment Recieved</div>
For pixel unit
<div [style.width.px]="width"> Width Size with px</div>
Or
<div bind-style.width.px="width"> Width Size with px</div>
Other CSS units
<div [style.width.em]="width"> Width Size with em</div>
<div [style.width.pt]="width"> Width Size with pt</div>
<div [style.width.%]="width"> Width Size with %</div>
Component
export class MyComponent
{
width: number = 80;
}
Check with same as below once:
<div [style.width]="width+'px'">some texts </div>
export class MyComponent
{
width: number = 150;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With