JSFiddle - React, Tailwind, and code Playground

by Sergey Goryachev

HTML

<div class="imgcase">
  <img src="https://habrastorage.org/files/b7d/6bb/a06/b7d6bba067464ada90ce3b17c1873af0.png" alt="">
</div>

CSS

body {
  padding: 40px 0;
  background: red;
}
.imgcase {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.imgcase img {
  position: relative;
  z-index: 2;
}
.imgcase:after {
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid white;
  width: 100%;
  height: 100%;
  left: 30px;
  top: -15px;
}