在卡片上显示完整图像

时间:2019-02-22 05:06:45

标签: html css

在这张卡片中,我给了一个图像标签。当我运行代码时,图像的一半被隐藏了。我的例外是图片应像这样覆盖卡:

Excepted output

所以请让我知道如何实现这一目标。

这是我的代码:

.section6-card1-diagonal {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-color: transparent;
  width: 246px;
  height: 406px;
  border-color: lightgrey;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.cards1 {
  border-bottom: 225px solid #846EB1;
  border-left: 401px solid transparent;
  position: absolute;
  bottom: 0;
  left: -155px;
}
<div class="card section6-card1-diagonal">
  <h5>Dell Inspiron Heavy metallic Display</h5>
  <img class="section4-image" src="https://i5.walmartimages.com/asr/726f43a4-2dbb-4340-adc1-ce798580ba23_1.c5ced9469e3036a57d81678e9ebd2f1d.jpeg" />
  <div class="cards1">

  </div>
</div>

3 个答案:

答案 0 :(得分:0)

播放宽度.section4-image类,以获得更好的样式

.section6-card1-diagonal {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-color: transparent;
  width: 246px;
  height: 406px;
  border-color: lightgrey;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.cards1 {
  border-bottom: 225px solid #846EB1;
  border-left: 401px solid transparent;
  position: absolute;
  bottom: 0;
  left: -155px;
}
.section4-image {
    height: 55vh;
    background-color: "red";
    width: 52vh;
    margin-left: 10%;
    margin-top: 0%;
}
<div class="card section6-card1-diagonal">
  <h5>Dell Inspiron Heavy metallic Display</h5>
  <img class="section4-image" src="https://i5.walmartimages.com/asr/726f43a4-2dbb-4340-adc1-ce798580ba23_1.c5ced9469e3036a57d81678e9ebd2f1d.jpeg" />
  <div class="cards1">

  </div>
</div>

答案 1 :(得分:0)

首先:您需要上传桌面的透明图像(PNG)图像。 其次:您需要上传小分辨率图像。

当前您上传的是1500x1500的高分辨率图片

现在,您需要在css下添加图片以显示图像并使其透明。

.section4-image {
width:100%;
}

制作透明图像后,您需要在图像上添加z-index css以显示在形状上。

    .cards1 {
      border-bottom: 225px solid #846EB1;
      border-left: 401px solid transparent;
      position: absolute;
      bottom: 0;
    z-index: -1;
    }
.section4-image {
z-index: 1;
}
`

.section6-card1-diagonal {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-color: transparent;
  width: 246px;
  height: 406px;
  border-color: lightgrey;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.cards1 {
  border-bottom: 225px solid #846EB1;
  border-left: 401px solid transparent;
  position: absolute;
  bottom: 0;
  left: -155px;
}

.section4-image {
  width:100%;
  }
<div class="card section6-card1-diagonal">
  <h5>Dell Inspiron Heavy metallic Display</h5>
  <img class="section4-image" src="https://i5.walmartimages.com/asr/726f43a4-2dbb-4340-adc1-ce798580ba23_1.c5ced9469e3036a57d81678e9ebd2f1d.jpeg" />
  <div class="cards1">

  </div>
</div>

答案 2 :(得分:0)

这是一个简单的解决方案。

只需将负z-index赋予.cards1

 .cards1 {
      border-bottom: 225px solid #846EB1;
      border-left: 401px solid transparent;
      position: absolute;
      bottom: 0;
      left: -155px;

      z-index:-1;
    }

这将使div出现在图片的后面,因为使用简单的文字,图片将具有更高的优先级