JSFiddle - React, Tailwind, and code Playground

by Chris LaFrombois

HTML

<div class="wrapper">
  <div class="red-bg box">
    Lorem Ipsum.<br>
    Lorem. Ipsum dolor.
  </div>
  <div class="yellow-bg box">
    Lorem Ipsum.<br>
    Lorem. Ipsum dolor.
  </div>
</div>

CSS

.wrapper {
  position: relative;
}

.box {
  text-align: center;
  font-size: 30px;
  position: absolute;
  padding: 100px;
}


.red-bg {
  background: red;
  color: yellow;
  z-index: 3;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.yellow-bg {
  background: yellow;
  color: red;
  z-index: 2;
}