How to style the Image component

Hi,

I need help with the Image component such that a rounded picture is displayed instead of a square picture

Regards

Hi @mabutabee!

Could you clarify your question? Do you want to scale your image within borders or you want to do rounded borders of the image?

I want rounded borders of the image

something like this

rounded

now it displays this way

square

DId you try to add CSS style for rounded borders?

.image-rounded-borders {
   border-radius:4px;
   -moz-border-radius:4px;
   -webkit-border-radius:4px;
}

Thank you @Pinyazhin

I just added the CSS style and it worked