Not able to align ion-avatar to the center of <ion-item> in Ionic 4

Rag*_*hav 3 ionic-framework ionic4

I am working in my Ionic 4 project and I have added the ion-avatar but it is not coming in the center of the

This is my editprofile.page.html:

<ion-item class="newitem2">
    <ion-avatar>
        <img name="profile_pic" [src]="this.userdetailsedit.value.profile_pic"/>
    </ion-avatar>   
</ion-item>
Run Code Online (Sandbox Code Playgroud)

Any help is much appreciated.

小智 5

请在“离子化身”上添加课程

您的html文件看起来像

<ion-item class="newitem2">
    <ion-avatar class="image-center">
        <img name="profile_pic" [src]="this.userdetailsedit.value.profile_pic"/>
    </ion-avatar>   
</ion-item>
Run Code Online (Sandbox Code Playgroud)

添加此scss

.image-center{
margin:0 auto;
}
Run Code Online (Sandbox Code Playgroud)