我是Ionic的新手。我正在尝试为this.等个人资料页面创建离子卡。基本上,我想在离子卡顶部使用离子卡,如image.
所示我该怎么做?
以下是代码:
#content {
position: relative;
// margin-top: auto;
background-color: green;
box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.4);
padding-top: 200px;
}
#profile-info {
position: absolute;
top: -95px;
width: 100%;
z-index: 2;
text-align: center;
}
#profile-image {
display: block;
border-radius: 120px;
border: 1px solid #fff;
width: 128px;
height: 128px;
margin: 30px auto 0;
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
}
<ion-content has-header="true">
<ion-card id="content">
<ion-avatar id="profile-info">
<img id="profile-image" src="img/bg.jpg">
</ion-avatar>
</ion-card>
</ion-content>
答案 0 :(得分:0)