-1

In VS Code angular project I have this warning !

"Expected a number type" Angular

When I use data binding html attribute in template:

[style.font-size]="16+i+'px'"
A. Morel
  • 9,210
  • 4
  • 56
  • 45

1 Answers1

0

The good way is:

[style.font-size.px]="16+i"
A. Morel
  • 9,210
  • 4
  • 56
  • 45