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'"
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'"
The good way is:
[style.font-size.px]="16+i"