JSFiddle - React, Tailwind, and code Playground

by Ksenia Polyakova

HTML

<div class="container">
  <img class="pic" src="https://img3.goodfon.ru/original/1366x768/3/64/star-wars-costume-plastic.jpg" alt="">
  <div class="overlay"></div>
</div>

CSS

.container {
  width: 400px;
  height: 250px;
  position: relative;
}

.pic {
  width: 400px;
  height: 250px;
}

.overlay {
  width: 400px;
  height: 250px;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0;
}

.container:hover .overlay {
  opacity: 0.5;
}