JSFiddle - React, Tailwind, and code Playground

by Julien Roche

HTML

<figure class="breaking-bad">
  <img src="http://s1.dmcdn.net/WsJaZ.jpg" class="breaking-bad__heisenberg" />
  <span class="breaking-bad__rejoinder">Say my name</span>
</figure>

<figure class="breaking-bad">
  <img src="http://s1.dmcdn.net/WsJaZ.jpg" class="breaking-bad__heisenberg" />
  <span class="breaking-bad__rejoinder breaking-bad__rejoinder--blend-mode">Say my name</span>
</figure>

CSS

.breaking-bad {
  height: 250px;
  position: relative;
  width: 590px;
}

.breaking-bad__heisenberg {
  height: 250px;
  width: 590px;
}

.breaking-bad__rejoinder {
  color: white;
  font-size: 5em;
  font-weight: bolder;
  left: 0px;
  line-height: 250px;
  position: absolute;
  right: 0px;
  text-align: center;
  top: 0px;
}

.breaking-bad__rejoinder--blend-mode {
  mix-blend-mode: overlay;
}