JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://google.com/nothere.jpg">

CSS

img {
  position: relative;
}
img:before {
  content: ' ';
  display: block;
  position: absolute;
  left: 10px;
  height: 41px;
  width: 95px;
  background-color: white;
 ...