小编典典

我们如何使用CSS样式重叠两个图像?

css

我在html表中有图像列表,并且需要在每个图像上重叠一个小图标。我们如何使用z索引和定位来做到这一点?


阅读 495

收藏
2020-05-16

共1个答案

小编典典

.under {

  position: absolute;

  left: 0px;

  top: 0px;

  z-index: -1;

}



.over {

  position: absolute;

  left: 40px;

  top: 10px;

  z-index: -1;

}


<img src="https://tafttest.com/184x46.png" width="184" height="46" class="under" />

<img src="https://tafttest.com/100x84.png" width="100" height="84" class="over" />
2020-05-16