JSFiddle - React, Tailwind, and code Playground

by cchana

HTML

<div>

</div>

SCSS

div {
  background: url('https://images.1thingaweek.com/heros/black-mirror-bandersnatch.jpg');
  background-size: cover;
  height: 200px;
  position: relative;
  width: 200px;
  &:after {
    background: inherit;
    content: 'xxx';
    position: absolute;
    bottom: -10px;
  }
}