如何在离子卡上添加离子化身?如下图所示

时间:2017-07-25 17:40:12

标签: css ionic2

我是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>

1 个答案:

答案 0 :(得分:0)

你刚刚错过了#content元素的一些CSS参数:

height: 150px;
width: 100%;
display: block;
margin-top: 100px;

演示: Fiddle