方法一:
<p [ngStyle]="{'width':spanLabelFixed+'px'}"></p>
方法二:
<p [ngStyle]="styleMethod()"}"></p>
// ts中
styleMethod() {
const style = {
width: this.spanLabelFixed + 'px'
};
return style;
}
方法一:
<p [ngStyle]="{'width':spanLabelFixed+'px'}"></p>
方法二:
<p [ngStyle]="styleMethod()"}"></p>
// ts中
styleMethod() {
const style = {
width: this.spanLabelFixed + 'px'
};
return style;
}