I want to center an RadzenImage

I want to center an RadzenImage, How can i Do That, I tried Radzen Row Then RadzenColumn & Placed the RadzenImage Componet, But I'm unable to center the Image Responsively...

Any help is appreciated

Hi @Owais_Raza,

You can use RadzenStack:

<RadzenStack JustifyContent="JustifyContent.Center" AlignItems="AlignItems.Center">
        <RadzenImage ... />
</RadzenStack>

Or add the following css classes to your image:

<RadzenImage Class="rz-display-block rz-mx-auto" ... />
1 Like

Extremly Helpful,
Sorry for my Terrible English!