JSFiddle - React, Tailwind, and code Playground

by levan gongadze

HTML

<div class="article">
  <div class="play">
  play
  </div>
</div>

CSS

.article {
  background: #000;
  width: 300px;
  height: 300px;
}

.play {
  display: none;
  position: absolute;
  background: #fff;
}

.article:hover .play {
  display: block;
}