Show image over another image on hover

后端 未结 4 974
春和景丽
春和景丽 2020-12-16 08:03

I have the following code: JSFiddle

HTML:

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-16 08:20

    Got it myself.

    HTML:

    CSS added:

    .profile-image:hover .overlay {
      position:absolute;
      width: 48px;
      height: 48px;
      z-index: 100;
      background: transparent url('overlay_image.png') no-repeat;
      cursor: pointer;
    }
    

提交回复
热议问题