JSFiddle - React, Tailwind, and code Playground

by talvinder400

HTML

<div class="img-container">
  <img src="http://placekitten.com/300/200" alt="">
</div>

CSS

.img-container {
  display: inline-block;
  position: relative;
}

.img-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0px 0px 60px 40px black bottom;
}