Image size

Someone could tell me how to edit the size of an image attached?

Hello,

can you clarify what do you mean width edit size of image.

If you mean for example change size of

<img scr='path/filenane' height='60' width='120'>

then you can make something like

<img scr='path/filenane' [height]='variableheight' [width]='variablewidth'>

and change variable in .ts

Best regards, anna-liebt

1 Like

You can change in css class:

img {
height:100px;
width: 100px;
)