无法将离子化身与 Ionic 4 中 <ion-item> 的中心对齐
Not able to align ion-avatar to the center of <ion-item> in Ionic 4
我正在我的 Ionic 4 项目中工作,我已经添加了 ion-avatar 但它没有出现在
的中心
这是我的editprofile.page.html:
<ion-item class="newitem2">
<ion-avatar>
<img name="profile_pic" [src]="this.userdetailsedit.value.profile_pic"/>
</ion-avatar>
</ion-item>
非常感谢任何帮助。
离子头像请加class
你的 html 文件看起来像
<ion-item class="newitem2">
<ion-avatar class="image-center">
<img name="profile_pic" [src]="this.userdetailsedit.value.profile_pic"/>
</ion-avatar>
</ion-item>
添加这个 scss
.image-center{
margin:0 auto;
}
我正在我的 Ionic 4 项目中工作,我已经添加了 ion-avatar 但它没有出现在
的中心这是我的editprofile.page.html:
<ion-item class="newitem2">
<ion-avatar>
<img name="profile_pic" [src]="this.userdetailsedit.value.profile_pic"/>
</ion-avatar>
</ion-item>
非常感谢任何帮助。
离子头像请加class
你的 html 文件看起来像
<ion-item class="newitem2">
<ion-avatar class="image-center">
<img name="profile_pic" [src]="this.userdetailsedit.value.profile_pic"/>
</ion-avatar>
</ion-item>
添加这个 scss
.image-center{
margin:0 auto;
}