JSFiddle - React, Tailwind, and code Playground

by FERMIS

HTML

<div>
  <span class="card"></span>
  <span class="card"></span>
  <span class="card"></span>
</div>

CSS

body {
  background: purple;
}

.card {
  width: 20px;
  height: 30px;
  background: linear-gradient(225deg, transparent 5px, white 5px);
  display: inline-block;
  position: relative;
  box-shadow: 5px 10px #888888;
}

.card:not(:first-child) {
  margin-left: -6px;
}