如何使用 html 和 css 在个人资料照片(如 facebook 应用程序)上添加按钮?我在 Ionic 3 中使用 ion-avatar
这是我的代码:
<ion-item no-lines>
<ion-avatar>
<img src="http://www.sclance.com/pngs/png-avatar/png_avatar_1048927.png">
</ion-avatar>
</ion-item>
Run Code Online (Sandbox Code Playgroud)
CSS:
ion-avatar img {
width:100% !important;
height : 100% !important;
max-width: 150px !important; //any size
max-height: 150px !important; //any size
margin: auto;
}
Run Code Online (Sandbox Code Playgroud)