JSFiddle - React, Tailwind, and code Playground

by Сергей Тарасевич

HTML

<img src="http://bitsofco.de/broken.jpg" alt="Где блять картинка!!!">

CSS

img {
  background: #cccccc;
  border: 1px solid #cccccc;
  display: block;
  margin: 0 auto;
  position: relative;
  height: 170px;
  width: 250px;
}

img:after {
  background-color: #fff;
  color: #646464;
  content: "=(" " " attr(alt);
  display: block;
  font-family: "Arial";
  font-size: 20px;
  left: 0;
  line-height: 170px;
  position: absolute;
  text-align: center;
  top: 0;
  height: 170px;
  width: 250px;
  z-index: 2;
}